添加标题单元格后不会出现

时间:2015-06-29 19:28:06

标签: ios swift uitableview header

我有大图像,然后我有桌面视图。这两个元素在滚动视图和表视图上:

scrollEnabled = false

我的tableView中有两个单元格,它们的高度按单元格文件中的函数计算(因为单元格中的文本是动态的)

func configure(#comment: Comment) {

    userCommentTextView.text = comment.comment
    userCommentTextView.accessibilityLabel = "Quote Content"
    userCommentTextView.accessibilityValue = comment.comment

}

一切都很好,我正在计算滚动视图大小,如

scrollView.contentSize.height = tableView.frame.origin.y + tableView.frame.height 
在`func tableView(tableView:UITableView,cellForRowAtIndexPath indexPath:NSIndexPath) - > UITableViewCell {}委托

但是在我添加自定义标题后,所有单元格都不可见,只有我的标题!为什么?问题是什么?我检查过,有细胞信息。并且

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

    return comments.count
}

不是零。但是cellforrowindexpath甚至没有执行。你能救我吗?

1 个答案:

答案 0 :(得分:0)

尝试按

添加标题视图
func tableView(viewForHeaderInSection section: Int) -> UIView {}

并致电

func tableView(heightForHeaderInSection section: Int) -> CGFloat {}

func numberOfSectionsInTableView() -> Int{}