我有一个数组,其中包含用户回复帖子的评论,它们保存在Parse.com中,但似乎当我尝试在tableView中显示它们时,它们没有显示出来。这就是我用来在tableView中显示注释的内容。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCellWithIdentifier("commentCell", forIndexPath: indexPath) as! CommentTableViewCell
cell.commentLabel?.text = comments![indexPath.row] as String
return cell
}
我已经尝试了其他一些代码变体和其他一些帖子,试图找到答案,但仍然没有运气。 我可以确认数据是保存在Parse中的,但它似乎并没有显示在应用程序中。我做错了什么?
答案 0 :(得分:1)
您忘记了配置tableview数据源。
{
"_id" : NumberLong(203440),
"date" : ISODate("2013-05-11T00:00:00Z")
}
{
"_id" : NumberLong(203520),
"date" :ISODate("2013-01-05T00:00:00Z")
}
{
"_id" : NumberLong(203970),
"date": ISODate("2013-01-11T00:00:00Z")
}
{
"_id" : NumberLong(203660),
"date" : ISODate("2013-01-11T00:00:00Z")
}
{
"_id" : NumberLong(203360),
"date" : ISODate("2013-01-11T00:00:00Z")
}
要使用tableview,您必须配置tableview委托和数据源。