UIImagePickerController: игнорирование запроса на фотосъемку;камера еще не готова - PullRequest
5 голосов
/ 19 сентября 2011

Я использую камеру в своем приложении.

Я хочу сделать снимок через 3 секунды автоматически.Код работает абсолютно нормально, примите для одного случая ..

Если приложение переходит в фоновый режим, в то время как тиканье камеры происходит каким-либо образом, например, если происходит промежуточный вызов или пользователь нажимает клавишу возврата ... тогдаприложение возобновляется, оно не продолжает тик камеры и в консоли выдает это предупреждение

UIImagePickerController: игнорирование запроса на фотосъемку;камера еще не готова.

Я хочу перезапустить камеру, когда произойдет такое, что мне делать?

Ответы [ 2 ]

0 голосов
/ 05 ноября 2013

Что я сделал, чтобы решить эту проблему:

- (void)viewDidAppear:(BOOL)animated {
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(cameraIsReady:)
                                                 name:AVCaptureSessionDidStartRunningNotification object:nil];

    self.ready = NO;
    if (![UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
        // There is not a camera on this device, so don't show the camera button.
        [self showImagePickerForSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
    } else {
        [self showImagePickerForSourceType:UIImagePickerControllerSourceTypeCamera];
    }
}

- (void)cameraIsReady:(NSNotification *)notification {
    self.ready = YES;
}

- (IBAction)takePhoto:(id)sender {
    if (self.ready) {
        [self.imagePickerController takePicture];
    }
    self.ready = NO;
}
0 голосов
/ 04 июля 2012

мы можем использовать эти функции делегата приложения

- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...