2011-09-27 72 views
1

我使用ABPeoplePickerNavigationController将iPhone联系人导入到我的应用程序。我最近决定,不是只保存缩略图图像,而是保存整个图像。有了iPad并且可能需要更大尺寸的图像以及不同的裁剪,我认为这是一条路。但是,在导入后保存一些新的联系人时,根据照片的大小,保存时间会很长。没有照片,保存是即时的,所以我知道这与照片的大小以及我正在做的事情有关。相关的代码是在以下情况下,任何人都可以指出我在做什么错?ABPeoplePickerNavigationController节省更大的图像需要很长的时间

- (BOOL)peoplePickerNavigationController: (ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)contact { 

    NSLog(@"%s", __FUNCTION__); 
    self.selectedThumbnailImage = nil; 
    self.selectedImage = nil; 

    if(ABPersonHasImageData(contact)){ 

     self.selectedThumbnailImage = nil; 
     NSData *imgData = (NSData *)ABPersonCopyImageData(contact); 
     UIImage *pickedImage = [UIImage imageWithData:imgData]; 
     [imgData release]; 

     self.selectedImage = pickedImage; 

     CGSize imageSize = pickedImage.size; 
     CGSize targetSize = CGSizeMake(110.0,120.0); 
     CGFloat width = imageSize.width; 
     CGFloat height = imageSize.height; 
     CGFloat targetWidth = targetSize.width; 
     CGFloat targetHeight = targetSize.height; 
     CGFloat scaleFactor = 0.0; 
     CGFloat scaledWidth = targetWidth; 
     CGFloat scaledHeight = targetHeight; 
     CGPoint thumbnailPoint = CGPointMake(0.0,0.0); 

     if (CGSizeEqualToSize(imageSize, targetSize) == NO) 
     { 
      CGFloat widthFactor = targetWidth/width; 
      CGFloat heightFactor = targetHeight/height; 

      if (widthFactor > heightFactor) 
       scaleFactor = widthFactor; // scale to fit height 
      else 
       scaleFactor = heightFactor; // scale to fit width 
      scaledWidth = width * scaleFactor; 
      scaledHeight = height * scaleFactor; 

      // center the image 
      if (widthFactor > heightFactor) 
      { 
       thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5; 
      } 
      else 
       if (widthFactor < heightFactor) 
       { 
        thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5; 
       } 
     }  

     UIGraphicsBeginImageContext(targetSize); 

     CGRect thumbnailRect = CGRectZero; 
     thumbnailRect.origin = thumbnailPoint; 
     thumbnailRect.size.width = scaledWidth; 
     thumbnailRect.size.height = scaledHeight; 

     [pickedImage drawInRect:thumbnailRect]; 

     self.selectedThumbnailImage = UIGraphicsGetImageFromCurrentImageContext(); 
     [[NSNotificationCenter defaultCenter] postNotificationName:@"personChanged" object:nil]; 

     UIGraphicsEndImageContext(); 
    } 

    self.nameFirstString = (NSString *)ABRecordCopyValue(contact, kABPersonFirstNameProperty); 
    self.nameLastString = (NSString *)ABRecordCopyValue(contact, kABPersonLastNameProperty); 
    [nameFirstTextField setText:nameFirstString]; 
    [nameLastTextField setText:nameLastString]; 

    self.person.birthday = (NSDate *)ABRecordCopyValue(contact, kABPersonBirthdayProperty); 

    [self updateRightBarButtonItemState]; 
    [self dismissModalViewControllerAnimated:YES]; 

    return NO; 
} 

- (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)identifier{ 

    NSLog(@"%s", __FUNCTION__); 
    return NO; 
} 

- (void)saveImage { 

    // Delete any existing image. 
    NSManagedObjectContext *context = [[UIApplication sharedDelegate] managedObjectContext]; 
    Image *oldImage = person.image; 
    if (oldImage != nil) { 
     [context deleteObject:(NSManagedObject*)oldImage]; 
    } 

    // Create an image object for the new image. 
    UIImage *newImage = [NSEntityDescription insertNewObjectForEntityForName:@"Image" inManagedObjectContext:context]; 
    [newImage setValue:selectedImage forKey:@"image"]; 
    [self.person setValue:newImage forKey:@"image"]; 
} 
- (IBAction)save:(id)sender { 

    NSLog(@"%s", __FUNCTION__); 

    [self.person setValue:selectedThumbnailImage forKey:@"thumbnailImage"]; 
    [self saveImage]; 

    self.person.nameFirst = nameFirstString; 
    self.person.nameLast = nameLastString; 

    NSError *error; 
    NSManagedObjectContext *context = [[UIApplication sharedDelegate] managedObjectContext]; 
    if (![context save:&error]) { 
     NSLog(@"AddPersonViewController - addViewControllerDidFinishWithSave - Person MOC save error %@, %@", error, [error userInfo]); 
     exit(-1); // Fail 
    } 

    [self.delegate addPersonViewController:self didFinishWithSave:YES didEditPerson:person]; 
} 

编辑:我改变了saveImage代码以下内容并得到了错误“非法尝试建立关系‘之间的人’在不同的上下文对象:

- (void)saveImage { 

// Delete any existing image. 
//NSManagedObjectContext *context = [[UIApplication sharedDelegate] managedObjectContext]; 

NSLog(@"%s", __FUNCTION__); 

NSManagedObjectContext *savingPhotoContext = [[NSManagedObjectContext alloc] init]; 
self.savingPhotoMOC = savingPhotoContext;               
[savingPhotoMOC setPersistentStoreCoordinator:[[[UIApplication sharedDelegate] managedObjectContext] persistentStoreCoordinator]]; 
[savingPhotoContext release];  

Image *oldImage = person.image; 
if (oldImage != nil) { 
    [savingPhotoMOC deleteObject:(NSManagedObject*)oldImage]; 
} 

// Create an image object for the new image. 
UIImage *newImage = [NSEntityDescription insertNewObjectForEntityForName:@"Image" inManagedObjectContext:savingPhotoMOC]; 
[newImage setValue:selectedImage forKey:@"image"]; 
[newImage setValue:self.person forKey:@"person"]; 
//[self.person setValue:newImage forKey:@"image"]; 

NSNotificationCenter *dnc = [NSNotificationCenter defaultCenter]; 
[dnc addObserver:self selector:@selector(addControllerContextDidSave:) name:NSManagedObjectContextDidSaveNotification object:savingPhotoMOC]; 

NSError *error; 
if (![savingPhotoMOC save:&error]) { 
    NSLog(@"Occasion View Controller - addViewControllerDidFinishWithSave - Adding MOC save error %@, %@", error, [error userInfo]); 
    exit(-1); // Fail 
} 
[dnc removeObserver:self name:NSManagedObjectContextDidSaveNotification object:savingPhotoMOC]; 
self.savingPhotoMOC = nil; 

} - (无效)addControllerContextDidSave:(NSNotification *)saveNotification {

NSLog(@"%s", __FUNCTION__); 
NSManagedObjectContext *context = [[UIApplication sharedDelegate] managedObjectContext]; 
[context mergeChangesFromContextDidSaveNotification:saveNotification]; 

}

+0

如果需要很长时间,您应该在后台执行此操作,并使用委托回调或nsnotification通知可能在保存完成时使用它的其他功能。 –

+0

行..我想这将涉及使用一个单独的managedObjectContext?为了简化,我只使用一个MOC来完成我的整个应用程序。我确信这是一个糟糕的主意,但它对所有的上下文都有些困惑。我真的没有看到需要多种背景,但现在我认为我需要。谢谢。 – SAHM

+0

嗯,好吧,现在显示我的经验不足,但我发现我无法在一个上下文中保存新对象'person',同时在另一个上下文中保存对象'image'(并将其分配给'person')。我认为这将工作,如果我合并在新的背景下,但:“非法企图在不同背景下的对象之间建立关系”人“..不知道从哪里去.. – SAHM

回答

1

如果需要很长时间,您应该在后台执行此操作,并使用委托回调或nsnotification通知可能在保存完成时使用它的其他功能。你可以使用GCD或nsoperationqueue ...为gcd看看'火热机器人的博客。我喜欢它,因为他解释的事情不仅仅是提供复制粘贴的代码。

+0

我打算把它作为答案,因为我知道这是正确的。然而,我个人很难得到它的工作,还没有(见[这个链接](http://stackoverflow.com/questions/7693556/saving-large-image-with-core-data-and -gcd))。希望尽快开始工作。感谢您的正确方向。 – SAHM