我正在尝试从数组中删除一个对象,当我的表视图获取时reload
,从表视图中显示的数组中删除了对象,我正在使用– removeObjectAtIndex:
从数组中删除对象。请帮我从数组中永久删除对象。在此先感谢。
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
[myArray removeObjectAtIndex:indexPath.row];
[tableView reloadData];
}
}