讲解iOS开发中UITableView列表设计的基本要点

2020-01-14 19:26:15于海丽

        [self.tableView deleteRowsAtIndexPaths:selectedRows withRowAnimation:UITableViewRowAnimationAutomatic];
    }
    else
    {
        // 删除全部
        [self.dataArray removeAllObjects];
         
        [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationAutomatic];
    }
    // 删除完成,退出编辑状态,并退出多选状态,同时更新导航栏的按钮
    [self.tableView setEditing:NO animated:YES];
     
    self.tableView.allowsMultipleSelectionDuringEditing = NO;
     
    [self updateBarButtons];
}
注:相关教程知识阅读请移步到IOS开发频道。