目前正在创建类似Facebook的应用程序,我需要创建一个自定义UITableviewCell,其标签包含长度为动态的帖子以及类似和注释按钮。在点击评论按钮时,额外的tableview应该像在facebook中一样出现。任何人都可以帮我解决这个问题吗?
答案 0 :(得分:0)
只是给你一个提示,
var commentClicked : Bool = false
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 3 //Replace 3 with number of posts
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if commentClicked == false {
//1 for the post
return 1
} else {
//Replace 2 with number of comments
return 2
}
}
根据需要定义cellForRowAtIndexPath。 还有一个用于评论按钮的IBAction。 单击此注释按钮重新加载tableView。
希望这有帮助。