i am newbie in to Parse.com i try to Fetch data from Parse table with same key but value is Different like as
-(void)getdata { NSMutableArray *allObjects = [NSMu
You should be able to use whereKey:containedIn: to do this.
whereKey:containedIn:
PFQuery *query = [PFQuery queryWithClassName:@"MapInfo"]; [query whereKey:@"Type" containedIn:@[@"Temopary", @"Business"]];
You also have a typo in Temporary (unless Temporay is something) - not sure if that's intentional or not.