ios 多个section的标题哪个会被悬停?

ios 多个section的标题哪个会被悬停


繁花不似锦
浏览 934回答 3
3回答

人到中年有点甜

  [self.tableView beginUpdates];  NSString *newItem = [NSString stringWithFormat:@"Add Item %d",[_dataSource count]];  [_dataSource addObject:newItem];  NSArray *paths = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:([_dataSource count] - 1) inSection:0]];  [self.tableView insertRowsAtIndexPaths:paths withRowAnimation:NO];  [self.tableView endUpdates];  这里是添加一行,你要删除的话就remove:  [_dataSource removeOjbectAtIndex:];  然后调  - (void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;

梦里花落0921

在按钮事件中显示uiTableView之后调用该实例下的reloadData方法,再控制Section的委托函数中动态返回Section数量即可
打开App,查看更多内容
随时随地看视频慕课网APP