我想刪除表格視圖單元格中的一行。目前,代碼看起來就像這樣:xcode - 從表格視圖刪除一行
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
// Remove the row from data model
[listOfAllOpenChats removeObjectAtIndex:indexPath.row];
[tableView reloadData];
}
的問題:我會成爲一個錯誤:
No visible @infterface "NSArray" declares the selector "removeObjectAtIndex:"
謝謝。有用! – Nanog000