uiscrollview故事板内的uitableview

时间:2013-11-04 13:43:19

标签: ios iphone objective-c uitableview uiscrollview

所以我在故事板中有一个UIScrollView,在故事板中也有一个UITableView。关键是我想在scrollview中放入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];

1 个答案:

答案 0 :(得分:0)

我认为你的tableview单元需要一个标识符。尝试点击表格视图单元格,在属性检查器下面有一个名为Identifier的字段。检查一下!