0

我基本上只是设置了表格视图,所以我可以看到它的外观。我也在头文件中设置了协议。

这是代码

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 1;
}



- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *identifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];

    return cell;

}
4

1 回答 1

0

你用的是iOS6吗?因为只有在 iOS 6 中才会 dequeueReusableCellWithIdentifier 总是给你一个单元格。在 iOS5 中,你必须检查你是否有一个单元格,如果它是 nil 则初始化一个单元格。

于 2013-07-04T15:22:52.163 回答