UITableViewCell的方法不起作用

时间:2013-01-10 20:32:50

标签: ios objective-c

当我做简单的HelloWorld应用程序时,我遇到了问题

[self.tableView insertRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationAutomatic]

,这种方法不起作用......我不知道为什么? PLIZ帮助

代码:

- (void)viewDidLoad
{
int i = 0;
[super viewDidLoad];
    while (i < 10 ) {
        NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
        [self.tableView insertRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationAutomatic];
        i++;
    }
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   static NSString *CellIdentifier = @"Cell";
   UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
   cell.textLabel.text = @"HelloWorld";
   return cell;
}

应用应使用Label @“HelloWorld”

创建10个单元格

1 个答案:

答案 0 :(得分:3)

你这是错误的方式。如果你想要10个单元格,你不应该尝试一次添加一个单元格,你应该在numberOfRowsInSection中返回10,e.x:

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

此外,单元格中不会显示任何内容,因为您在cellForRowAtIndexPath中的单元格上调用了alloc / init。修改您的代码,如下所示:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    cell.textLabel.text = @"HelloWorld";
    return cell;
}