1
A
回答
1
您的不同部分可以有不同的背景圖像和子視圖的不同框架。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"myCell"];
if(cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"LOC_ID"];
[cell autorelease];
}
if(indexPath.section == 0){
if(indexPath.section == 0 && [self tableView:numberOfRowsInSection:0]-1 == indexPath.section){
//put background image for last row in section 0
} else {
//backgroundimaes for all other cells in section0
} else if(indexPath.section == 1) {
//configure section 1 ibackgroundimages
}
}
return cell;
}
設置一個細胞
cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cell_bg.png" ]autorelease];
cell.selectedBackgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cell_selected_bg.png"];
1
好圖。如果您嘗試創建具有不同寬度的部分的UITableView,那是不可能的。你將不得不使用兩個不同寬度的單獨UITableView,並將其放在另一個之下。或者只是手動設置一些UITableViewCells,根本不使用UITableView。
+0
您是如何使用UITableViewCells沒有一個UITableView的背景嗎? – vikingosegundo 2012-02-21 23:53:53
+0
我以前沒有看到過,但XCode在添加UITableViewCell時沒有問題,因爲沒有UITableView – 2012-02-22 05:26:11
相關問題
- 1. iOS今日擴展UITableView
- 2. 進一步擴展UITableView
- 3. UITableViewCell通過UITableView擴展
- 4. IPhone UITableView可擴展/合作
- 5. 今日擴展無響應的UITableView
- 6. 帶TAPBOTS/PASTEBOT按鈕的擴展UITABLEVIEW
- 7. 使用擴展的UITableView委託swift
- 8. 創建可擴展的UITableView和正常的UITableViewCell中的UITableView
- 9. 動態可擴展UITableView與部分
- 10. 修剪文件擴展名UITableView
- 11. 如何預先擴展UITableview在UITableView在IOS 8中的UITableView再次
- 12. 如何取消展開擴展的UITableView單元格?
- 13. 使用自動佈局的uitableview footerview的運行時擴展
- 14. OS X Lion的郵件擴展iPhone的UITableView動畫
- 15. UITableView(iPhone)中的佈局選項?或者擴展UIScrollView?
- 16. 如何讓UITableView擴展到UIScrollView的內部?
- 17. UITableView單元的擴展視圖不顯示子視圖?
- 18. 斯威夫特 - UIScrollView的擴展 - 添加圖片到一個UITableView
- 19. 使用Autolayout的可擴展UITableView單元格導致UIViewAlertForUnsatisiableConstraints
- 20. 調整大小的UITableView和今天擴展動態
- 21. 今天的擴展UITableView沒有收到行龍頭
- 22. UITableView中的可擴展行設置爲打開
- 23. 擴展擴展類型
- 24. Chrome擴展圖標://擴展/
- 25. 擴展擴展管理器
- 26. 擴展擴展類Zend_Db_Table_Row_Abstract
- 27. jQuery:如何擴展擴展?
- 28. 訪問擴展://擴展
- 29. 滾動時擴展擴展
- 30. 創建一個擴展另一個PHP擴展的PHP擴展?
因此,只需創建一個看起來像這樣的圖像並將其放入單元格中,我喜歡那樣 – 2012-02-22 05:27:37