UIImagePickerController при отклонении увеличивает просмотр до 20 пикселей только в iOS 6.0

РЕДАКТИРОВАТЬ : Я используюUIStoryBoard.

у меня естьpresented нравится:

UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];

imagePicker.delegate = self;

imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary; //| UIImagePickerControllerSourceTypeSavedPhotosAlbum ;
imagePicker.mediaTypes = [NSArray arrayWithObjects:(NSString *) kUTTypeImage,nil];

if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary])
{
    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
    {
        imagePicker.allowsEditing = YES;
        [self.navigationController presentViewController:imagePicker animated:YES completion:^{

        }];  
    }
}

Теперь когдаdissmissed

-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
   UIImage *image = info[UIImagePickerControllerEditedImage];
    NSLog(@"Image : %@",image);
    [self dismissViewControllerAnimated:YES completion:^{
    }];
}

В настоящее времяview становится так, как показано наfiqure :

РЕДАКТИРОВАТЬ : при удалении вид увеличивается до 20 пикселей.

РЕДАКТИРОВАТЬ : Это только в iOS 6.0 только

Ответы на вопрос(4)

Ваш ответ на вопрос