gpt4 book ai didi

iphone - 如何禁用 UITableView 的单个单元格的选择?

转载 作者:行者123 更新时间:2023-12-03 20:21:07 24 4
gpt4 key购买 nike

一旦用户点击触发操作的单元格,我想禁用用户交互,然后在操作完成后重新启用用户交互。有人可以告诉我该怎么做吗?

最佳答案

只需检查 TableView 委托(delegate)方法中的条件:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *categoryIdentifier = @"Category";
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

//Way to stop to choose the cell selection
if(indexpath.row == 0){
cell.selectionStyle = UITableViewCellSelectionStyleNone;
// OR
cell.userInteractionEnabled=False;
}
//while rest of the cells will remain active, i.e Touchable

return cell;

}

关于iphone - 如何禁用 UITableView 的单个单元格的选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6318251/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com