阅读背景:

错误:读取在“TableItem *”类型的对象上找不到的数组元素的预期方法

来源:互联网 
- (UITableViewCell *) tableView: (UITableView *) tableView cellForRowAtIndexPath: (NSIndexPath *) indexPath {

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath ];
    TableItem *item = self.items[indexPath.section][indexPath.row];
    cell.textLabel.text = item.title;
    cell.detailTextLabel.text = item.description;
}
- (UITableViewCell *) tableView: (UITableView *



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: