将数组计数分配给tableviewcell标签

时间:2017-09-04 14:37:17

标签: swift uitableview uilabel

我有一个posts数组,其中我将从PHP文件中返回所有帖子。我正在尝试将帖子数分配给tableview单元格中的标签。但是,当我为帖子分配帖子数量时,我得到的值为零。有人能帮忙吗?

var posts = [AnyObject]()
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if section == 0 {
        return 1
    } else {
        return posts.count
    }
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    if indexPath.section == 0 {
        let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! InfoCell

        print(posts.count)

        cell.PostsLbl.text = String(posts.count)

        return cell 
    } 
}

1 个答案:

答案 0 :(得分:0)

看起来你正在从PHP文件中获取Active Items length: {{totalItems.length}} <div ng-repeat="item in totalItems=(items | filter:searchFilter | filter:{active:true})"> {{item.title}} </div> 异步,并且在你获得它们后,你只重新加载第二部分。