How can I put an Apple TV app in background after pressing the Menu button
I have tried to use a private method to put the app in background after pressing the Menu button; and the following code works properly: @implementation ViewController { UITapGestureRecognizer *tapRecognizer; } -(void)viewDidLoad { [super viewDidLoad]; tapRecognizer = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(handleTap:)]; tapRecognizer.allowedPressTypes = @[[NSNumber numberWithInteger:UIPressTypeMenu]]; [self.view addGestureRecognizer:tapRecognizer]; } -(void)handleTap:(UITapGestureRecognizer *)sender { if (sender.state == UIGestureRecognizerStateEnded) { NSLog(@