删除cellForRowAtIndexPath中的对象时发出问题

时间:2017-06-06 14:14:52

标签: ios objective-c

当Cell到达第4个索引路径时,我想删除数组中的前两个对象。这是代码

if(indexPath.row == 4)
{

     NSLog(@"count1 : %@",sharedClass.potentialmatchesArray);
    [sharedClass.potentialmatchesArray removeObjectAtIndex:0];
    [sharedClass.potentialmatchesArray removeObjectAtIndex:1];
     NSLog(@"count2 : %@",sharedClass.potentialmatchesArray);


}

如何在cellforrow中重新加载tableview?请帮帮我..

0 个答案:

没有答案