我想在tableHeaderView和一個空白表中顯示一些內容,然後下載一些內容並重新加載tableView,然後在tableHeaderView中顯示不同的內容。有什麼地方我可以把代碼改變tableHeaderView和這些代碼將被稱爲一旦表加載每次? 謝謝。UITableView reloaddata和tableHeaderView問題
2
A
回答
1
表頭,你可以採取的UILabel,UIView的,的UIImageView,的UITextField等任何你想要的。然後,您只需將其放入界面編譯器並將其與控制器綁定,並且無論何時需要更新它,只需更新即可重新加載tableView。
如果你有表中的數據,那麼你必須做reloadData。但是對於headerview中的數據,不需要做reloadData。你可以直接將值賦給你的headerview,如下所示。
[email protected]"Header";
headerImageView.image = [UIImage imagenamed:@"image1.png"];
讓我知道你是否有任何問題。
0
在界面生成器中,您可以在UITabelView的標題內放置UILabel或任何您想要的視圖。只需拖動你想要的組件。我還建議您創建一個IBOulet,以便您稍後可以訪問它。你做出這樣的事情後:
[youTableView reloadData];
然後你就可以更新你的頭:
[email protected]"New info i want to display".
相關問題
- 1. UITableView實時reloadData問題
- 2. UITabBar中的UITableView reloadData問題
- 3. 當調用ReloadData時UITableView繪圖問題
- 4. UITableView reloadData
- 5. UITableView reloadData
- 6. reloadData - UITableView
- 7. UITableView的JSON reloadData
- 8. UITableView - reloadData或reloadRowsAtIndexPaths:
- 9. uitableview reloaddata緩存?
- 10. UITableView reloadData與performSelectorInBackground
- 11. UITableView reloadData異步
- 12. 的UIView用的UITableView和UIImageView的,訪問的UITableView與reloadData
- 13. UITableView作爲tableHeaderView的另一個UITableView
- 14. UITableView reloadSections/reloadData:標題視圖變爲空
- 15. UITableView reloadSections reloadData之前
- 16. UITableView reloadData不會話
- 17. UITableView的崩潰[reloadData]
- 18. 對象 - UITableView的reloadData
- 19. 什麼是[UITableView reloadData]?
- 20. 當uitableview調用reloaddata
- 21. 在桌面單元格中有一個MKMapview時UITableView reloaddata問題
- 22. UITableView如何在reloadData上創建UITableViewCell的問題
- 23. UITableView和SearchBar問題
- 24. 的UITableView reloaddata和的tableview是空
- 25. iPhone:UITableView reloadData計時問題
- 26. iPad --- managedObject問題,當[self.tableViewSection reloadData]
- 27. 的UITableView reloadData EXC_BAD_ACESS代碼= 2
- 28. UITableView的reloadData複製細胞
- 29. iOS Swift UITableView ReloadData性能
- 30. 如何實現像UITableView reloadData
無需重新加載表的數據,因爲你可以檢查我的答案。 – AppAspect