我有一个 NSMutableArray,它在编辑 TableView 时经常被编辑。我想要做的是运行检查,看看 TableView 中的行是否与 NSMutableArray 中的任何数字匹配,如果匹配,则执行操作。因此,在 TableView 代码中,我有:
if([thearray containsObject:indexPath.row] {
//perform action here
}
但是我不断收到错误消息:
Incompatible integer to pointer conversion sending 'NSInteger' (aka 'int') to parameter of type 'id';
我做错了什么,我该怎么做?