我有一个非常奇怪的问题。这是我应该设置我的UITableViewCell文本标签和详细文本标签的代码:
[[cell textLabel] setText:[[recentSearches objectAtIndex:indexPath.row] name]];
[[cell detailTextLabel] setText:[formatter stringFromDate:[[recentSearches objectAtIndex:indexPath.row] date]]];
recentSearches
是NSArray
RecentSearch
个NSManagedObjects
个对象,RecentSearch
。 NSString *name
对象有两个实例变量:NSDate *date
和didSelectRowAtIndexPath
;
当我尝试显示我的桌子时,我得到了空白的细胞,尽管细胞确实出现了。更奇怪的是,当我选择一个时,{{1}}获取数据并将其正确地传输到另一个视图。
任何建议都会非常有用。我很难过!
答案 0 :(得分:1)
检查numberOfRowsForSection委托方法,将10作为harcoded返回 分配一些硬编码值,看看是否能看到任何值。 如果你能够在单元格中看到值,那么问题在于你要返回的numberOfRowsForSection数。