我怎樣才能創建一個UITablveVIew
這樣嗎?的UITableView與自定義單元格樣式
-3
A
回答
0
0
- 您需要創建一個自定義的,你需要使用
UITableViewCell
- 加載所有的控制。對於例如,在這種情況下
UIButton
,UILable
等等等等 - 在你的cellForRowAtIndexPath你需要取決於你是哪個行把狀態。
- 設置阿爾法爲1,你需要的控件。並將alpha設置爲0,以便您不需要顯示的控件。而且,你也可以改變它們的屬性,例如改變
UILable
字體或改變UIButton
注意形象:要爲你知道什麼將是你的單元格的格式實現這種UITableView
是很重要的。
0
你繼承UITableViewCell
。我已經做到了我自己,這裏有關於這個專題的一些偉大的鏈接:
The best way to do custom, reusable UITableViewCells
Custom UITableViewCell with IB
的IB方法是非常簡單的。
相關問題
- 1. 自定義uitableview單元格?
- 2. UITableView自定義單元格
- 3. UITableView與自定義單元格
- 4. UITableView與自定義單元格
- 5. 在分組UITableView中設置自定義單元格樣式
- 6. TTTableViewController與自定義單元格樣本
- 7. UITableView的自定義單元格滾動
- 8. UILabels和自定義的UITableView單元格
- 9. UITableView自定義單元類與靜態單元格
- 10. Xcode 4.2 UITableview自定義單元格
- 11. UITableView 2自定義單元格
- 12. 自定義UITableView不刷新單元格
- 13. iOS自定義UITableView單元格按鈕
- 14. Uitableview單元格自定義唯一ID
- 15. UITableView自定義單元格(iOS 9)
- 16. 自定義單元格在UITableView
- 17. 自定義UITableView單元格錯誤
- 18. UITableView自定義單元格不刷新
- 19. UITableView單元格自定義問題cellForRowAtIndexPath
- 20. UITableView和自定義單元格
- 21. UITableView自定義單元格非常慢
- 22. 自定義UITableView(UIView +單元格)
- 23. 更新uitableview自定義單元格
- 24. iOS自定義UITableView單元格
- 25. 自定義單元格選擇中的問題iPhone中的UITableView中的樣式
- 26. Android AlertDialog.Builder setSingleChoiceItems與自定義單元格樣式
- 27. UITableView與自定義單元格(與.xib)崩潰
- 28. UITableview與多個自定義單元格與Swift
- 29. UITableView上的單元格與自定義UITableViewCell之間的間距
- 30. 與自定義單元格/自定義背景圖像分組的UITableView
這裏有一些很好的鏈接,以幫助你.. http://developer.apple.com/library/ IOS /#文檔/ UIKit的/參照/ UITableViewCell_Class /參考/的reference.html http://stackoverflow.com/questions/9014105/where-is-a-good-tutorial-for-making-a-custom-uitableviewcell HTTP:/ /stackoverflow.com/questions/2477277/rotate-a-custom-uitableviewcell和這個旋轉表(我想你也需要)http:// www。 iphonedeveloperdiary.com/2010/05/supporting-iphone-landscapeportrait-orientations-uitableviewcells/ – rptwsthi