访问闭包之外的数据

Posted

技术标签:

【中文标题】访问闭包之外的数据【英文标题】:Accessing Data Outside of Closure 【发布时间】:2015-07-18 02:07:38 【问题描述】:

我的班级中有一个数组,我试图将其填充到闭包中。但是,当我尝试访问/打印数组内容时,它似乎在闭包之外是空的。如何存储数据以供在闭包之外使用?

for index in 0..<6 
        let picNumber = index + 1
        if let pica = currentuser.objectForKey("pic\(picNumber)") as? PFFile 
            pica.getDataInBackgroundWithBlock( (data:NSData!, error:NSError!) -> Void in
                if error == nil 
                    self.pic1 = UIImage(data: data)
                    var imageS = scaleImage(self.pic1!, and: 200)
                    self.imagesForSection0.append(imageS)
                
            )
            println(self.imagesForSection0)
        
    

【问题讨论】:

【参考方案1】:

闭包外不为空

getDataInBackgroundWithBlock方法是async,表示它会先返回。所以,你在print函数中什么都看不到。

文档

如果可用,则从缓存中异步获取数据或从网络中获取其内容。

编辑

for index in 0..<6 
    let picNumber = index + 1
    if let pica = currentuser.objectForKey("pic\(picNumber)") as? PFFile 
        pica.getDataInBackgroundWithBlock( (data:NSData!, error:NSError!) -> Void in
            if error == nil 
                self.pic1 = UIImage(data: data)
                var imageS = scaleImage(self.pic1!, and: 200)
                self.imagesForSection0.append(imageS)
            
        println(self.imagesForSection0)
        //Then call reload data
        )
    

【讨论】:

感谢您的帮助。仍然有点困惑,self.imagesForSection0 数组在文件的其他部分就像是空的一样。它应该在集合视图中显示检索到的图像,但它显示为空白。我应该使用其他方法吗? 你应该把println函数放在闭包里面,数组改变后调用reloaddata 啊完美。非常感谢!

以上是关于访问闭包之外的数据的主要内容,如果未能解决你的问题,请参考以下文章

我如何在闭包之外访问数组?

访问闭包Swift3之外的变量

我所理解的‘闭包’

结构数组在闭包之外没有更新

读书笔记-你不知道的JS上-闭包与模块

理解闭包