2016-04-23 9 views
0

parse.comのドキュメントをチェックしましたが、明確に理解できませんでした。Parse.comでSql "Select"を使用する方法

var query = PFQuery(className:"GameScore") 
query.whereKey("playerName", equalTo:"Sean Plott") 
query.findObjectsInBackgroundWithBlock { 
    (objects: [PFObject]?, error: NSError?) -> Void in 

    if error == nil { 
    // The find succeeded. 
    print("Successfully retrieved \(objects!.count) scores.") 
    // Do something with the found objects 
    if let objects = objects { 
     for object in objects { 
     print(object.objectId) 
     } 
    } 
    } else { 
    // Log details of the failure 
    print("Error: \(error!) \(error!.userInfo)") 
    } 
} 

私は何をしたいのかを教えてみます。私は に配列を記述し、エンティティを配置したいとします。

たとえば、このクエリのすべての要素を配列に入れるにはどうすればいいですか?私は方法を見つけOK

答えて

0

var query = PFQuery(className:"followers") 


    query.whereKey("follower", equalTo:"fmv0N91zAf") 
     query.findObjectsInBackgroundWithBlock { (objects, error) -> Void in 

    if error == nil { 
    // The find succeeded. 
    print("Successfully retrieved \(objects!.count) scores.") 
    // Do something with the found objects 
    for object in objects! { 
     let following:String? = (object as! PFObject)["following"]as? String 
     if following != nil{ 
     self.deneme.append(following!) 
     } 
    } 
関連する問題