I am using this method to fetch objects from the parse in back ground
PFQuery *query = [PFQuery queryWithClassName:@"UserInfo" predicate:predicate];
NSPredicate *predicate; = [NSPredicate predicateWithFormat:@"useremail == %@",[dict objectForKey:@"form"]];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error)
{
}];
Its producing the results but what i have to do is i have to stop the thread when i pop over from this class where i have implemented this code.