gpt4 book ai didi

ios - UITableViewCellAccessoryCheckmark 未在 iOS 7 中显示

转载 作者:可可西里 更新时间:2023-11-01 03:23:35 25 4
gpt4 key购买 nike

我在显示手机中的 Checkmark 配件时遇到问题。当我使用另一种类型的配件时,它可以工作,但不能与 Checkmark 配件一起使用。

它在 iOS 6 中完美运行,但在 iOS 7 中运行不佳。我什么时候不见了?

 (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:EVENT_SELECTION_CELL_IDENTIFIER forIndexPath:indexPath];
Event *event = [self.fetchedResultsController objectAtIndexPath:indexPath];
cell.textLabel.text = event.name;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
if ([event.current boolValue]) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
} else {
cell.accessoryType = UITableViewCellAccessoryNone;
}
return cell;
}

最佳答案

我通过更改 uitableview 的色调解决了这个问题

我通过InterfaceBuilder把uitable的tintcolot改成了默认颜色

TableView.tintColor =  [UIColor blackColor];

关于ios - UITableViewCellAccessoryCheckmark 未在 iOS 7 中显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19250867/

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