没有索引路径表格单元格在Swift中重用

时间:2014-08-23 23:28:47

标签: ios uitableview swift tableview

我注意到在Obj-C中有很多问题,但我几乎不记得Obj-C,每个答案都是针对这个问题的。在这里我得到了这个错误:"没有重复使用表格单元格的索引路径"有时当应用程序刷新时。我注意到,当我不刷新但是我离开并重新打开表视图时,格式化已经毁了。

这是我的"刷新"在一些地方使用的方法:

   @IBAction func loadData(){
        timeLineData.removeAllObjects()
        //pulls the data from the server
        var findTimeLineData: PFQuery = PFQuery(className: "Sweets")
        findTimeLineData.findObjectsInBackgroundWithBlock{
            (objects:[AnyObject]!, error: NSError!) -> Void in
            if !error{
                for object:PFObject! in objects{
                    self.timeLineData.addObject(object)
                }
                let tempArray: NSArray = self.timeLineData.reverseObjectEnumerator().allObjects
                self.timeLineData = tempArray as NSMutableArray

                //reloads the data in the table view
                self.tableView.reloadData()
            }
        }
    }

和tableview方法:

override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell? {
    let cell: SweetTableViewCell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as SweetTableViewCell

    let sweet: PFObject = self.timeLineData.objectAtIndex(indexPath.row) as PFObject

    //part of the animation
    cell.sweetTextView.alpha = 0
    cell.userNameLabel.alpha = 0
    cell.timestampLabel.alpha = 0


    cell.sweetTextView.text = sweet.objectForKey("content") as String

    //add the date
    var dateFormatter: NSDateFormatter = NSDateFormatter()
    dateFormatter.dateFormat = "HH:mm yyyy-MM-dd"
    cell.timestampLabel.text = dateFormatter.stringFromDate(sweet.createdAt)

    //finds the sweeter associated with a pointer
    var findSweeter: PFQuery = PFUser.query()
    findSweeter.whereKey("objectId", equalTo: sweet.objectForKey("sweeter").objectId)

    findSweeter.findObjectsInBackgroundWithBlock{
        (objects: [AnyObject]!, error: NSError!)-> Void in
        if !error{
            let user: PFUser = (objects as NSArray).lastObject as PFUser
            cell.userNameLabel.text = user.username
        }

    }

    //adds animation
    UIView.animateWithDuration(1, animations: {
        cell.sweetTextView.alpha = 1
        cell.userNameLabel.alpha = 1
        cell.timestampLabel.alpha = 1
    })

    return cell
}

知道导致错误的原因是什么?

1 个答案:

答案 0 :(得分:0)

导致问题的原因是:当您滚动表格时,TableView会将您的异步调用解析服务器尝试操作的单元格出列。

您可以通过以下方式克服此问题: 1-在Parse上的Sweets表中,将PFUser对象存储为指针 在loadData函数中,通过PFQuery的includeKey方法从查询中获取用户

如果按此更改,则每次调用cellForRowAtIndexPath时都不必查询PFUser。