gpt4 book ai didi

ios - 插入到 UITableView 后 : custom the cell

转载 作者:行者123 更新时间:2023-11-29 01:54:52 24 4
gpt4 key购买 nike

我正在使用插入到我的 UITableView 中:

 Skill * newSkill = [[Skill alloc] init];
newSkill.name = @"Nouvelle compétence";
newSkill.pathPicto = @"generic";
[self.skills insertObject:newSkill atIndex:0];

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView beginUpdates];
[self.tableView
insertRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationTop];
[self.tableView endUpdates];

效果很好,但现在我希望插入的单元格是可编辑的。

我希望可以编辑标签“Nouvelle compétence”并用其他文本覆盖,我会更改标签颜色,但我不知道如何自动插入单元格。也许在插入之前使用特定方法 ??

最佳答案

您需要使用 UITextField 而不是 UILabel。插入新单元格时,将此 UITextField 的 enabled 属性设置为 true

当加载所有其他单元格时,记得将其设置为 false 以禁用编辑(同一个单元格可能在多个地方使用)。

关于ios - 插入到 UITableView 后 : custom the cell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30984138/

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