我想使用UIView
作爲UITableView
中的單元格,有關如何做到這一點的任何建議或示例?自定義UITableViewCell iOS
1
A
回答
6
UITableViewCell具有隻讀屬性contentView。它返回單元對象的內容視圖。您可以根據需要操作此視圖,添加子視圖並執行所需操作。 第二種方法是對UITableViewCell進行子類化並在界面構建器中進行設計。
1
0
通過繼承的UITableViewCell創建自定義單元格,並使用自定義單元格,而不是默認的表視圖細胞
3
1
您可以在UITableViewCell contentView中添加。我使用如下
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
UILabel* lbl=[[UILabel alloc] initWithFrame:CGRectMake(10, 5, 80, 35)];
[email protected]"Email";
lbl.tag=1;
lbl.backgroundColor=[UIColor clearColor];
lbl.font=[UIFont fontWithName:@"Helvetica-Bold" size:20];
[cell.contentView addSubview:lbl];
}
UILabel* lbl=(UILabel*)[cell.contentView viewWithTag:1];
[email protected]"Your Text";
相關問題
- 1. iOS自定義UItableviewcell部分
- 2. 自定義的UITableViewCell IOS
- 3. 自定義UITableViewCell
- 4. 自定義UITableViewCell
- 5. UITableViewCell自定義
- 6. 自定義UITableViewCell
- 7. UITableViewCell自定義
- 8. ios:自定義UITableViewCell是空的
- 9. IOS添加自定義屬性到uitableviewcell
- 10. 自定義大小UITableViewCell iOS 8
- 11. iOS的FirebaseUI與自定義UITableViewCell
- 12. iOS - 分配自定義UITableViewCell拋出NSMallocException
- 13. 自定義UITableViewCell按鈕和RowSelected(iOS/Monotouch)
- 14. 自定義的UITableViewCell
- 15. 自定義的UITableViewCell
- 16. 自定義UITableViewCell UIButton
- 17. 自定義UIView自定義UITableViewCell
- 18. 自定義UITextview裏面自定義UITableviewcell
- 19. iOS:使用UIAppearance定義自定義UITableViewCell顏色
- 20. 自定義UITableViewCell不加載
- 21. 自定義UITableViewCell難題
- 22. 自定義UITableViewCell異常
- 23. MonoTouch中的自定義UITableViewCell
- 24. 配置自定義的UITableViewCell
- 25. UIWebView在自定義UITableViewCell
- 26. UiTableView內部自定義UITableViewCell
- 27. 自定義UITableViewCell中的UITableView
- 28. 創建自定義UITableViewCell
- 29. 自定義UITableViewCell中的UIPickerView
- 30. UITableViewCell的自定義顏色