gpt4 book ai didi

ios - DetailTextLabel 不显示在 iOS 8 xcode 6

转载 作者:行者123 更新时间:2023-11-28 21:55:45 25 4
gpt4 key购买 nike

我正在制作有关运行 iPhone 5S、Xcode 6 和 iOS 8 的教程。我想在单元格表中显示 textDetailLabel。你能帮我看看这里有什么问题吗?我已经检查了语法,但它不起作用

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
Checklist *checklist = [self.dataModel.lists objectAtIndex:indexPath.row];
cell.textLabel.text = checklist.name;
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

int count = [checklist countUncheckedItems];
if ([checklist.items count] == 0) {
cell.detailTextLabel.text = @"(No Items)";
} else if (count == 0) {
cell.detailTextLabel.text = @"All Done!";
} else {
cell.detailTextLabel.text = [NSString stringWithFormat:@"%d Remaining", count];
}
return cell;

最佳答案

  1. 移动

    static NSString *CellIdentifier = @"Cell";

脱离方法,公开。

  1. 当你创建 TableView 时,在你创建表的地方写下这一行(在 viewDidLoad 或你创建表的方法中)

[dataTable registerClass:[UITableViewCell class] forCellReuseIdentifier:tableIdentifier];

  1. 中删除单元格条件
    • (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

方法,因为你的表格 View 单元格不是零,你不能设置单元格样式。

所以你必须写

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

关于ios - DetailTextLabel 不显示在 iOS 8 xcode 6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26650035/

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