PFUser Query在首次运行时不会更改变量

时间:2015-12-06 02:12:53

标签: ios swift parse-platform pfuser

我有一个Textfield,用户可以输入其他用户的用户名,将他添加为朋友。我使用PFQuery查询所有用户,然后检查Textfield中输入的用户名是否存在。如果它存在,则会出现一个按钮(我知道我在文本中意外地将其称为标签),如果用户按下按钮,则应添加其他用户。我在查询时遇到问题,当我搜索用户时(我知道该用户存在),只有在我再次运行时才会在第一次运行时打印用户名。似乎只在第二次更改值。

import UIKit
import Parse
import Bolts

var userToAdd = [String]()

class AddFriendViewController: UIViewController {

@IBOutlet var addFriendLabel: UIButton!
@IBOutlet var searchUserTF: UITextField!
override func viewDidLoad() {
    super.viewDidLoad()
    addFriendLabel.setTitle("", forState: .Normal)
    // Do any additional setup after loading the view.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

func checkForUser() {

    if searchUserTF.text != "" {

        var username = searchUserTF.text            
        var query = PFUser.query()
        query?.findObjectsInBackgroundWithBlock({ (objects:[PFObject]?, error:NSError?) -> Void in

            for object in objects!{
            let recievedUser = (object as PFObject)["username"] as! String

                if recievedUser == username{
                    userToAdd.removeAll()
                    userToAdd.append(username!)

                    self.addFriendLabel.setTitle("Share myEvents with \(userToAdd[0])", forState: .Normal)
                }              
            } 
        })

    }  
}

@IBAction func searchButtonPressed(sender: AnyObject) {

    checkForUser()
    print(userToAdd)
    if addFriendLabel.hidden == true{

        let alertController = UIAlertController(title: "Username not found!", message: "A user with this username does not exist, please check the spelling or your internet connection", preferredStyle: .Alert)
        let action = UIAlertAction(title: "OK", style: .Default, handler: nil)
        alertController.addAction(action)
        self.presentViewController(alertController, animated: true, completion: nil)

    } 
}

/*
// MARK: - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    // Get the new view controller using segue.destinationViewController.
    // Pass the selected object to the new view controller.
}
*/

}

print(userToAdd)只显示我["测试"]当我再次点击该按钮时,我第一次点击它,它显示我[]。我知道我也可以将它保存为String而不是数组,我只是在玩,因为使用String我遇到了完全相同的问题。

我希望有人明白我的意思:D并且知道我的问题的解决方案。

1 个答案:

答案 0 :(得分:0)

正如函数#paragraph{ margin-top:30px; text-align: left; width:auto; background-color:#F5F5DC; } 所暗示的那样,查询操作在后台完成,因此在调用findObjectsInBackgroundWithBlock后立即尝试访问userToAdd会给你零,因为它没有已设置为查询尚未完成。第二次按下按钮,您将访问现在已完成的第一个查询的结果。

您可以使用完成闭包(在Objective-C中称为块,因此函数名称的checkForUser()部分可以处理结果并在需要时显示错误。

您还可以使用WithBlock仅检索您所使用的用户,从而提高查询效率;

whereKey