单元格为空白,在ios模拟器9.1或9.0上运行我的应用程序时,xcode没有显示错误。在8.4模拟器上正常工作。代码没有变化。
我试过以下
customCell.textLabel.text = [_nameArray objectAtIndex:indexPath.section];
和imageView customCell.imageView.image = [_profileImageArray objectAtIndex:indexPath.section];
属性。工作但这没有用,因为我想使用我的自定义对象。customCell.customName.text =@"hi";
和customCell.customImage.image = [UIImage imageNamed:@"commentButton.png"];
。没用?<messagePreviewCell: 0x7fcdf8dd3860; ...>
收到以下回复。选中“使用大小类”复选框,我将大小设置为“wCompact hAny”。
我在viewcontroller.m
中找到的cellForRowAtIndexPath代码 static NSString *simpleTableIdentifier = @"messagePreviewCell";
messagePreviewCell *customCell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
customCell.customName.text = [_nameArray objectAtIndex:indexPath.section];
customCell.customTime.text = [_timeArray objectAtIndex:indexPath.section];
customCell.customDescription.text = [_messageArray objectAtIndex:indexPath.section];
NSString *className = [[[_profileImageArray objectAtIndex:indexPath.section] class] description];
if ([className isEqualToString:@"UIImage"]) {
customCell.customImage.image = [_profileImageArray objectAtIndex:indexPath.section];
}
return customCell;
我的代码运行正常......请帮助,谢谢!
答案 0 :(得分:0)
如果您只为一个设备系列开发,请取消选中&#34;使用大小类&#34;在故事板的文件检查器中。
在这里找到我的答案(附加信息)! UITableView Empty with iOS 9 beta 5 update