Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to enable a bar button if the user is labeled "Yes" in the SubscribedUser key. I really do not know how to do this. I have used queries before but only to call objects onto the screen, nothing like this before.

Here is what I have right now, I know it is wrong but I hope you get the idea of what I'm trying to do right now:

func enableButton() {

    var query: PFQuery = PFQuery(className: "User")

    query.whereKey("username", equalTo: PFUser.currentUser().username)


    if query.valueForKey("SubscribedUser") = "Yes"{

        self.barButton.enabled = true

    }else{

        self.barButton.enabled = false
    }



}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
194 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...