我试图弄清楚如何在cocos2d游戏中通过其url(认为是Facebook个人资料图片)加载图像。有人能帮我吗?我正在使用swift,但不知道如何在UI上显示此图像。这是我到目前为止所拥有的...

 if let currentUserName = PFUser.currentUser()!["profilepic"] as? String {
        if let url = NSURL(string: currentUserName) {
            if let data = NSData(contentsOfURL: url){


            }
        }

最佳答案

 if let profilePic = PFUser.currentUser()!["profilepic"] as? String {
        if let url = NSURL(string: profilePic) {
            if let data = NSData(contentsOfURL: url){
                   imgView.image = UIImage(data: data!) //where imgView is your UIImageView
            }
        }
 }

08-25 12:56
查看更多