如何使用swift加载从url到cocos2d控件的图像分配?

时间:2015-07-31 01:03:55

标签: facebook swift cocos2d-iphone spritebuilder

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

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


            }
        }

1 个答案:

答案 0 :(得分:0)

 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
            }
        }
 }