Masquer / Afficher l'animation de l'appareil photo Iris / Shutter de l'iPhone

Je ne suis pas en mesure de Cacher les iphone obturateur de la Caméra de l'ouverture d'animation pour mon application.
Je suis à l'aide de UIImagePickerController pour accéder à l'iphone appareil photo et à l'aide de mon propre superposition des contrôleurs.
Est-il un moyen pour enlever les initiale sur le déclencheur(aussi connu comme l'Iris) de l'animation que l'appareil démarre.
Merci

[MODIFIER]

Pour ceux qui veulent connaître la façon de changer l'iris de l'appareil de l'animation.

Ci-dessous la fonction est appelée avant de l'iris de l'appareil de l'animation commence.

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    //Here is were I make the camera preview fit the entire screen. 
    //This might violate the "don't change the view hierarchy"-rule. 
    //So I am not sure if it is valid for App Store commitment.
    //However, the NSLogs are used to
    //figure out which subview is the actual Camera Preview which turns out 
    //to be the PLPreviewView. (uncomment to se the printouts).
    //Change it's size to fit the entire screen (and scale it accordingly
    //to avoid distorted image

    NSLog(@"WillShowViewController called...");

    NSLog(@"VC:view:subviews\n %@\n\n", [[viewController view] subviews]);

    NSLog(@"VC:view:PLCameraView:subviews\n %@\n\n", [[[[viewController view] subviews] objectAtIndex: 0] subviews]);

    NSLog(@"VC:view:PLCameraView:PLPreviewView:subviews\n %@\n\n", [[[[[[viewController view] subviews] objectAtIndex: 0] subviews] objectAtIndex: 0] subviews]);
    NSLog(@"VC:view:PLCameraView:PLCropOverLay:subviews\n %@\n\n", [[[[[[viewController view] subviews] objectAtIndex: 0] subviews] objectAtIndex: 1] subviews]);
    NSLog(@"VC:view:PLCameraView:UIImageView:subviews\n %@\n\n", [[[[[[viewController view] subviews] objectAtIndex: 0] subviews] objectAtIndex: 2] subviews]);

}

Dans la fonction ci-dessus, vous pouvez aller à travers chaque couche à l'aide de la normale NSMuatableArray syntaxe comme objectAtIndex

espère que cela peut vous aider.

Ce qui concerne,

Ankur

source d'informationauteur Ankur