Как перестать закрывать приложение iOS при нажатии кнопки «Домой» во время воспроизведения видео в AVPlayerViewController - PullRequest
0 голосов
/ 08 мая 2019

Привет, в моем приложении я играю одно видео, и при его воспроизведении, если пользователь нажимает на приложение HomeButton, оно не должно быть минимальным. Есть ли способ добиться этого и создаст ли это какие-либо проблемы для утверждения приложения?

Я пытаюсь сделать приложение активным внутри метода applicationWillResignActive.

- (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 invalidate graphics rendering callbacks. Games should use this method to pause the game.

//    //home button press programmatically
    UIApplication *app = [UIApplication sharedApplication];
    [app performSelector:@selector(active)];

}

Приложение не должно закрываться при нажатии кнопки «Домой» во время воспроизведения видео в AvPlayerViewController.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...