私はiPadアプリケーションを開発しています。そして、アプリ内のビューの 1 つに、テーブル ビューがあり、テーブル セルをテーブル ビューに読み込んでいます。
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *identifier = @"tmpCell";
AgendaListCellView *cell = (AgendaListCellView *)[tableView dequeueReusableCellWithIdentifier:identifier];
if(cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"AgendaListCellView_iPad" owner:self options:nil];
cell = tmpCell;
}
cell.artist = [_mArAgendaList objectAtIndex:indexPath.row];
// Configure the cell.
[cell setRow:[_mArDictionaryObjects objectAtIndex:indexPath.row]];
return cell;
}
しかし今、テーブルビューをAgendaListCellView
セルに追加することは可能ですか?
下の画像を参照してください
セルを使用してこれをロードしています。右隅に 2 つのテキスト フィールドが表示されますか。これはランダムに読み込まれます。と削減されます。それを行うための解決策はありますか??