ios 多个section的标题哪个会被悬停
3 回答
人到中年有点甜
TA贡献1895条经验 获得超7个赞
[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;
- 3 回答
- 0 关注
- 933 浏览
添加回答
举报
0/150
提交
取消