Привет, в моем приложении я играю одно видео, и при его воспроизведении, если пользователь нажимает на приложение 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.