how to return result after OpenWithCompletionHandler: is complete
问题 Want to query a photo in the Coredata database this is my code this is the NSObjectSubclass category //Photo+creak.h #import "Photo+creat.h" @implementation Photo (creat) +(Photo *)creatPhotoByString:(NSString *)photoName inManagedObjectContext:(NSManagedObjectContext *)context{ Photo *picture = nil; NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Photo"]; request.predicate = [NSPredicate predicateWithFormat:@"name = %@", photoName]; NSArray *matches = [context