OStack程序员社区-中国程序员成长平台

标题: ios - 原型(prototype)单元 ==nil xcode6 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 03:58
标题: ios - 原型(prototype)单元 ==nil xcode6

当我创建 UITableView 时,tableview 没有附带原型(prototype)单元格,因此我删除了原始 View 并添加了 UITableView。但是,当新的 tableview 创建时,原型(prototype)仍然没有出现,所以我将一个 tablecell 拖到 table view 中,并在 storyboard 中将标识符命名为“Cell”。但是,当我尝试将解析查询填充到 tableview 单元格中时,它一直在崩溃,所以我放了一个 cell==nil 并发现该单元格等于 nil。我想知道我做错了什么?或者是否有任何方法可以识别单元格?

我的代码:

- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView
                             dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc]
                initWithStyle:UITableViewCellStyleDefault
                reuseIdentifier:CellIdentifier];
    }

    PFObject *shop=[self.shops objectAtIndex:indexPath.row];
    cell.textLabel.text = [shop objectForKey"Shopname"];
    return cell;
}

我的手机 enter image description here

更新: enter image description here

enter image description here



Best Answer-推荐答案


原始代码示例中的单元格标识符是“Cell1”,而 Storyboard 中的单元格标识符只是“Cell”。这些必须是相同的标识符。

顺便说一句,如果你有单元原型(prototype),你不应该在 cellForRowAtIndexPath 中插入那个 if (cell == nil) { ... } 子句。 cell 不应为 nil,因此您应该诊断该问题,而不是手动实例化表格 View 单元格。此外,您指定了“自定义”的表格单元格类型,但似乎像“基本”一样处理它。除非您真的为单元格使用自定义子类,否则我不会使用“自定义”单元格类型。

如果您的应用仍然崩溃,问题是错误信息是否相同。请使用您可能收到的任何错误消息的全文(特别是控制台中显示的内容)更新您的原始问题。如果您有堆栈跟踪,也请与我们分享。

另请引用So my app crashed, now what?当您有错误时为总法律顾问。

关于ios - 原型(prototype)单元 ==nil xcode6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27470188/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4