有關更改單元格樣式的問題。 在情節串連圖板,我已經創建了一個細胞:內容:動態原型更改部分的uiTableview單元格樣式
在代碼,段的數量:2。
第一個可以使用在故事板創建的佈局。這些單元格充滿了來自數據庫的數據。 我試圖將第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;
}
}
}
你應該嘗試我們的答案,讓你在忙什麼反饋。 –
將查找答案。給我一些時間,這是一個側面項目。 – TomVD