iOS开发学习之#表视图#(2)添加行

继续上篇学到的删除行,有删除就有添加:添加行我们用

- (void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
其中(NSArray *)indexPaths用于识别表视图中得行,(UITableViewRowAnimation)animation用来指定动画


核心代码如下:

//设置表单元的编辑风格
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
    returnUITableViewCellEditingStyleInsert;
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
    //判断表单元的编辑风格
    if (editingStyle ==UITableViewCellEditingStyleDelete) {
        [aremoveObjectAtIndex:indexPath.row];
        [tvdeleteRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
    }
    elseif (editingStyle == UITableViewCellEditingStyleInsert){
        i =i+1;
        NSInteger row = [indexPathrow];
        NSArray *insert = [NSArrayarrayWithObjects:indexPath, nil];
        NSString *str = [NSStringstringWithFormat:@"%i",i];
        [ainsertObject:str atIndex:row];
        [tvinsertRowsAtIndexPaths:insert withRowAnimation:UITableViewRowAnimationRight];
        
    }
}


和上篇一样要遵守的协议:

@interface ViewController :UIViewController<UITableViewDataSource,UITableViewDelegate>{
    IBOutletUITableView *tv;
    NSMutableArray *a;
    NSArray *b;
    int i;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值