I have a problem, i need to make a query on 2 fields of the same class, im using:
PFQuery *fewWins = [PFQuery queryWithClassName:@"FlightsDB"];
[fewWins whereKey:@"Name" containsString:searchText];
PFQuery *lotsOfWins = [PFQuery queryWithClassName:@"FlightsDB"];
[lotsOfWins whereKey:@"IATA" containsString:searchText];
The problem is that i get inconsistent results or no correct result a all, what am i missing?
Thanks in advance!