Reputation: 1007
Sorry, Objective-C noob here.
in java doing this is very simple. The code is just...
if(ParseObject.has("value"){
//dosomething
}
In objective-c there doesn't seem to be an equivilant to this method.
Upvotes: 0
Views: 122
Reputation: 40028
To get the values out of the PFObject
, you can use either the objectForKey:
method or the []
subscripting operator.
If there is no object for a given key, you will get nil.
Upvotes: 1