You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that this object can sometimes be of type NSArray. Its important to inspect a web service response to know what object type you are expecting.
##Access
Below is a mapping of JSON value types to the types they will be cast to in objective-c
String -> NSString *
int of float -> NSNumber *
list -> NSArray *
object -> NSDictionary *
null -> NSNull * (dont worry about this one, its an object representation of a null value)