1
我在我的標題部分找不到任何文本。這是我如何設置頁眉部分:viewForHeaderInSection部分不顯示標題
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return myDataSource[section].otherKeyValues.count
}
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return myDataSource.count
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: AccordionDetailTableViewCell = (NSBundle.mainBundle().loadNibNamed("AccordionDetailTableViewCell", owner: self, options: nil).first as? AccordionDetailTableViewCell)!
// cell.headerLabel!.text = "This is a test"
let currentCellData = myDataSource[indexPath.section]
cell.headerLabel!.text = currentCellData.otherKeyValues[indexPath.row].key
cell.detailLabel!.text = currentCellData.otherKeyValues[indexPath.row].value
return cell
}
override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let view: AccordionHeaderView = (NSBundle.mainBundle().loadNibNamed("AccordionHeaderView", owner: self, options: nil).first as? AccordionHeaderView)!
view.tag = section
view.delegate = self
view.titleLabel!.text = myDataSource[section].dateCreated == nil || myDataSource[section].dateCreated == "" ? " " : myDataSource[section].dateCreated
return view
}
項目顯示在單元格,即使我設置view.titleLabel!.text = "Hello"
然後你好不會出現。
我使用UIViewController
實施FZAccordionTableView
我在做什麼錯在這裏?
請實現你的tableView – Aakash
的heightForHeaderInSection方法,我已經實現了你的觀點,以UITableViewAutomaticDimension現在什麼也出現甚至細胞沒有見過 – Sam
給他們的靜態高度爲並查看它們是否可見 – Aakash