UITableView の cellForRowAtIndexPath でアプリが落ちる。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath原因は、「Storyboard の TableView に Table View Cell を追加してなかった。」
{ // ↓ここで落ちる
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath]; [self configureCell:cell atIndexPath:indexPath]; return cell;
}
つまり、Cell にアクセスしようにもアクセスが出来ない為に起こった。
この場合は、Table View Cell を追加後にプロパティの Identifier に 「Cell」 と指定することにより解決した。
0 件のコメント:
コメントを投稿