2

所以我有一个UIScrollViewin storyboard 和一个UITableViewin storyboard 。关键是我想在滚动视图中放置几个​​实例UITableView。但我得到一个错误

unable to dequeue a cell with identifier Cell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard

那么如何解决这个问题呢?

提前致谢!

行!这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"DayCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    [self configerCell:cell atIndexPath:indexPath];

    return cell;
}

我在故事板中给了一个单元格一个标识符......

这就是我将 UITableView 添加到 UIScrollView 的方式:

UITableViewController *tableView = [[UITableViewController alloc] initWithStyle:UITableViewStyleGrouped];
[self.mainScroll addSubview:tableView.view];
4

1 回答 1

0

我认为您的 tableview 单元格需要一个标识符。尝试单击表格视图单元格,然后在属性检查器下有一个名为Identifier. 检查那个!

于 2013-11-04T13:48:51.913 回答