gpt4 book ai didi

ios - 允许在 uitableview 中编辑,但不能在一行中编辑

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:05:04 24 4
gpt4 key购买 nike

我有一个包含多个部分的 UITableView。当我将表设置为编辑模式时,我希望一个部分(仅包含 1 行)不显示编辑符号并且不调用 tableView:commitEditingStyle:forRowAtIndexPath:。
这可能吗?
问候约翰

最佳答案

这里我假设第 1 节和第 0 行无法编辑

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
// Return NO if you do not want the specified item to be editable.

if (indexPath.section == 1) {
if (indexPath.row == 0) {
return NO;
}
}

return YES;
}

关于ios - 允许在 uitableview 中编辑,但不能在一行中编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6534916/

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