如何添加圖片和文本,如下圖所示?我已經在我的應用程序中使用了導航控制器,因此在將UITableView控制器作爲主頁中的新導航頁面時,會出現任何問題。 如何自定義UITableView?
0
A
回答
0
我會子類的UITableView細胞和創建自己的細胞MyCustomTableViewCell
,用的UIImageView和裏面的UILabel。
然後,你可以做到這一點,更新你的細胞在重用的情況下
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]
MyCustomTableViewCell *myCell = (MyCustomTableViewCell)cell;
myCell.label.text = newText;
myCell.imageView.image = newImage;
return cell;
}
2
配置當你UITableViewCell
你可以添加一個UIImageView
和UILabel
到細胞contentView
。
UITableViewCell *cell = ...;
UIImageView *yourImageView = ...;
UILabel *yourLabel = ...;
[cell.contentView addSubview:yourImageView];
[cell.contentView addSubview:yourLabel];
相關問題
- 1. 如何自定義UITableView
- 2. 自定義UITableView
- 3. 自定義UITableView
- 4. 自定義UITableView
- 5. 自定義的UITableView
- 6. 如何爲UITableView添加自定義EditingAccessoryView?
- 7. 如何自定義EKEventViewController的UITableView?
- 8. 自定義UITableView問題
- 9. 自定義uitableview單元格?
- 10. UiTableView內部自定義UITableViewCell
- 11. 自定義UITableViewCell中的UITableView
- 12. UITableView與自定義類
- 13. UITableView自定義彈出
- 14. 自定義UITableView重訂購
- 15. UITableView中的自定義UIControl
- 16. iOS UITableView自定義RowHeightt
- 17. 自定義UITableView visibleCells方法
- 18. UITableView自定義單元格
- 19. UITableView自定義滾動條
- 20. UITableView自定義頁腳
- 21. 故事板:自定義UITableView
- 22. UITableView與自定義UITableViewCell
- 23. UITableView自定義UIView重複
- 24. 像uitextview自定義uitableview
- 25. 多個自定義行UITableView?
- 26. 自定義UITableView不顯示
- 27. UITableView的自定義標題(如FoodSpotting APP)
- 28. 如何在UITableView的選定行中添加自定義視圖?
- 29. UITableView的自定義selectedBackgroundView定製選擇
- 30. 自定義ViewController中的UITableView:自定義UITableViewCells重疊
感謝您的代碼..但我已經創建了一個UITableView控制器。那麼現在我做這個代碼之前我必須做什麼?我怎麼能添加UITableView單元格? – goku
只需閱讀http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewController_Class/Reference/Reference.html :) –