.xib ファイルで UITableView を使用しようとしています。私は過去に、動的プロトタイプで再利用 ID を宣言するストーリーボードでそれを行いました。私は機能するはずの関数内にこのコードを持っています- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
:
NSString *ReuseId = @"DefaultCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ReuseId];
if (cell == nil) {
NSLog(@"cell == nil");
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ReuseId];
}
ただし、これを実行すると、cell == nil
一度印刷するのではなく、すべての行に印刷されます。
どうして??
ありがとう。