セルスタイルの変更について質問です。ストーリーボードで、セルを作成しました: コンテンツ: 動的プロトタイプ
コードでは、セクション数: 2。
セクション 1 は、絵コンテで作成されたレイアウトを使用できます。セルはデータベースからのデータで完全に満たされています。セクション 2 のセルのレイアウトを value1 スタイルに変更しようとしています。
これはどのように行うことができますか?
コードの一部:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"cartCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
switch (indexPath.section) {
case 0:
{
// Configure the cell...
NSInteger row = [indexPath row];
[[cell textLabel] setText:[cartItems objectAtIndex:row]];
return cell;
break;
}
case 1:
{
NSInteger row = [indexPath row];
switch (row) {
case 0:
[[cell textLabel] setText:@"Total1"];
break;
case 1:
[[cell textLabel] setText:@"Total2"];
}
return cell;
break;
}
}
}