-
(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
self.selectedArr = [tableView indexPathsForSelectedRows];
if (self.selectedArr.count >= 5) {//只能选择5个
[self showAlert];//提示用户 return nil;//返回nil,就会不会触发 didselect ..方法
}
return indexPath;
}
网友评论