ストーリーボードに問題があります。正常に動作していますが、UITableView のコンテンツ プロパティを変更しようとすると、次のエラーが発生しました。
-[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]、/SourceCache/UIKit/UIKit-2903.23/UITableView.m でのアサーションの失敗 キャッチされていない例外 'NSInternalInconsistencyException' によるアプリの終了、理由: '識別子 Cell を持つセルをデキューできません - nib を登録する必要がありますまたは識別子のクラスを作成するか、ストーリーボードのプロトタイプ セルを接続します。
静的セルを使用してグループ化されたテーブルビューを設計したい.よろしくお願いします
コード
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 2;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 3;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
return cell;
}