当Cell到达第4个索引路径时,我想删除数组中的前两个对象。这是代码
if(indexPath.row == 4)
{
NSLog(@"count1 : %@",sharedClass.potentialmatchesArray);
[sharedClass.potentialmatchesArray removeObjectAtIndex:0];
[sharedClass.potentialmatchesArray removeObjectAtIndex:1];
NSLog(@"count2 : %@",sharedClass.potentialmatchesArray);
}
如何在cellforrow中重新加载tableview?请帮帮我..