0

単純な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;
}

アプリはラベル@"HelloWorld"で10個のセルを作成する必要があります

4

1 に答える 1

3

あなたはこれについて間違った方法で行っています。一度に1つずつ追加しようとしてはいけない10個のセルが必要な場合は、numberOfRowsInSectionで10個を返す必要があります。例:

- (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;
}
于 2013-01-10T20:38:01.617 に答える