UI 控件不在带有故事板的自定义 tableviewcell 中显示内容

UI control not display content in custom tableviewcell with storyboard

我不明白为什么当 运行 具有 IOS8 和 XCODE 6.1.1 的应用程序时,我在情节提要中的标签不显示 我已将我的标签绑定到自定义 UiTableviewCell,我可以设置文本,但我的标签不会出现在单元格内容视图的子视图中 return by tableView dequeueReusableCellWithIdentifier:CellIdentifier];

如果使用 [self.tableView registerClass:[NewGameCell class] forCellReuseIdentifier:@"ListNewGameCell"]; 我无法使用故事板。

我阅读了所有其他问题,但找不到答案。 谢谢

试试这个....

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    YourCustomCell *cell = (YourCustomCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    return cell;
}

好吧,我太笨了!

UILabel 没有显示,因为我只为 iPad 添加它,而我的模拟器在 iPhone 上。 感谢您的帮助