0

UITableViewController を TableView の 1 つに追加しようと何日も試みたので、私は少し必死です。- ファイル - 新しいファイル - Objective-C クラス - UITableViewController のサブクラスでファイルを作成しました。

TableView に新しい UITableViewController のカスタム クラスを指定してシミュレータで実行すると、常にこのメッセージが表示されます

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; THREAD1: シグナル SIGABRT

誰かが私が間違っていることを知っていますか?? どうもありがとう

4

1 に答える 1

0

この関数はどこで入手しましたdequeueReusableCellWithIdentifier: forIndexPathか? これを試して。

UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) 
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
于 2013-04-08T10:12:11.377 に答える