2013年8月8日木曜日

UITableView の cellForRowAtIndexPath で落ちる

凡ミスばっかり。。。

UITableView の cellForRowAtIndexPath でアプリが落ちる。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{     // ↓ここで落ちる
    UITableViewCell *cell          = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];     [self configureCell:cell atIndexPath:indexPath];     return cell;
}
原因は、「Storyboard の TableView に Table View Cell を追加してなかった。」
つまり、Cell にアクセスしようにもアクセスが出来ない為に起こった。

この場合は、Table View Cell を追加後にプロパティの Identifier に 「Cell」 と指定することにより解決した。

0 件のコメント:

コメントを投稿