gpt4 book ai didi

iphone - 隐藏/显示 UITableViewCell 附件公开指示器

转载 作者:行者123 更新时间:2023-12-03 18:14:15 26 4
gpt4 key购买 nike

我正在尝试从核心数据加载一个字符串,如果该行中的值等于“--”,则附件披露指示器将隐藏,并且单元格选择样式应为 SelectionStyleNone

我尝试过,但没有成功

if (entity.value == @"--"){
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}

或者

NSString *this = entity.value;
if (this == @"--") {
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}

两者都不起作用,但这可能吗?谢谢。

最佳答案

我认为问题出在比较表达式上。正确的做法:

if ([entity.value isEqualToString:@"--"])

if ([this isEqualToString:@"--"])

关于iphone - 隐藏/显示 UITableViewCell 附件公开指示器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5248310/

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