我正试图弄清楚如何通过它在cocos2d游戏中加载图片(想想facebook个人资料图片)。有人能帮我吗?我使用swift但不知道如何在UI上显示此图像。这是我到目前为止所拥有的......
if let currentUserName = PFUser.currentUser()!["profilepic"] as? String {
if let url = NSURL(string: currentUserName) {
if let data = NSData(contentsOfURL: url){
}
}
答案 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
}
}
}