Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/swift/17.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
删除上一项tableview Swift_Swift_Tableview_Reloaddata - Fatal编程技术网

删除上一项tableview Swift

删除上一项tableview Swift,swift,tableview,reloaddata,Swift,Tableview,Reloaddata,我的一个tableview遇到了一个问题,我解码JSON并将结果放在单元格中,问题是,每次我关闭视图并返回时,前面的项目仍然在这里: 我想我与重新加载数据有关,但我不知道是什么 我的代码: //Retrieving JSON DATA : var jsonResult: NSDictionary = NSJSONSerialization.JSONObjectWithData(urlData!, options: NSJSONReadingOptions.MutableContainer

我的一个tableview遇到了一个问题,我解码JSON并将结果放在单元格中,问题是,每次我关闭视图并返回时,前面的项目仍然在这里:

我想我与重新加载数据有关,但我不知道是什么

我的代码:

//Retrieving JSON DATA : 

var jsonResult: NSDictionary = NSJSONSerialization.JSONObjectWithData(urlData!, options: NSJSONReadingOptions.MutableContainers, error: nil) as! NSDictionary
            var DataFromJSon = jsonResult["objects"] as! NSArray
            for one in DataFromJSon {
                let repo = Repository(jsonData: one as! [String : AnyObject])
                repos.append(repo)

            }

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    var cell:UITableViewCell? = tableView.dequeueReusableCellWithIdentifier("Cell") as? UITableViewCell
    if (cell != nil)
    {   
        cell = UITableViewCell(style: UITableViewCellStyle.Subtitle,reuseIdentifier: "Cell")
    }
    cell!.textLabel?.text =  repos[indexPath.row].title
    cell!.detailTextLabel?.text = repos[indexPath.row].price


    //on récupère l'url de l'image dans "Repository" et on la convertis en data exploitable
    let urlString: NSString = repos[indexPath.row].picture_url! ,
    imgURL = NSURL(string: urlString as String)

    if let url = NSURL(string: urlString as String) {
        // If this image is already cached, don't re-download
        if let img = imageCache[urlString as String] {
            cell!.imageView?.image = img
            cell!.imageView?.frame = CGRectMake(5,5,35,35)
            println("image présente")
        }
        else {
            // The image isn't cached, download the img data
            // We should perform this in a background thread
            let request: NSURLRequest = NSURLRequest(URL: imgURL!)
            let mainQueue = NSOperationQueue.mainQueue()
            NSURLConnection.sendAsynchronousRequest(request, queue: mainQueue, completionHandler: { (response, data, error) -> Void in
                if error == nil {
                    // Convert the downloaded data in to a UIImage object
                    let image = UIImage(data: data)
                    // Store the image in to our cache
                    self.imageCache[urlString as String] = image
                    // Update the cell

                    dispatch_async(dispatch_get_main_queue(), {
                        if let cellToUpdate = tableView.cellForRowAtIndexPath(indexPath) {
                            cellToUpdate.imageView?.image = image
                            cellToUpdate.imageView!.frame = CGRectMake(5,5,35,35)
                            println("image reload")
                        }
                    })
                }
                else {
                    println("Error: \(error.localizedDescription)")
                }
            })
        }


    }
    return cell!
}
我怎样才能解决这个问题


谢谢大家!

在将新项目追加到数组中之前,请清除以前的回购

var jsonResult: NSDictionary = NSJSONSerialization.JSONObjectWithData(urlData!, options: NSJSONReadingOptions.MutableContainers, error: nil) as! NSDictionary
var DataFromJSon = jsonResult["objects"] as! NSArray

repos.removeAll() // clear old items.[Add this line of code]

for one in DataFromJSon {
    let repo = Repository(jsonData: one as! [String : AnyObject])
    repos.append(repo)

}

你似乎附加了新下载的数据,而不是重写旧数据。也许你需要我的部分代码?这会澄清问题,是的。看看我更新的帖子!