I've created an iPad app which contains a slideshow and when this slideshow is tapped by the user he/she can entered some information.

What I'd like to do now is to display the slideshow contents on a TV when connecting the TV and iPad through AirPlay (or cable if possible, but that only seems to mirror things)

Can this be done? Can we have the slideshow run on the TV and also on iPad and then when the user taps the slideshow on the iPad the credentials input screen will show but on TV still the underlying slideshow will show and not the credentials?

How can this be done in iOS? Is it possible to display a portion of the application on the TV? So not mirroring the entire application.

link|improve this question
I'm actually experimenting with AirPlay n the iPhone 4s. I've managed to get it working with my Apple TV 2 only after setting the mirror option on the airplay control located in the task bar. I'm going to browse other possible answers here before posting a similar question. – Cliff Nov 26 '11 at 0:56
feedback

2 Answers

You can write the app to handle 2 UIScreens using Airplay and an Apple TV then set a seperate root view controller for both the TV UIScreen and for the iPad UIScreen. Then display the image or slideshow on the TV's view controller and run that from the events of you iPads view controller!

AMENDED AFTER CLIFS COMMENT:

So firstly in your app delegate in didFinishLaunchingWithOptions or didFinishLaunching setup a notification to receive the screen did connect.

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(screenDidConnect:) name:UIScreenDidConnectNotification object:nil];

Then you need to keep a reference to your separate window and push controllers to it as you would any other window.

- (void) myScreenInit:(UIScreen *)connectedScreen:(UIViewController*)mynewViewController
{    
    //Intitialise TV Screen
   if(!windowTV)
    {
        CGRect frame = connectedScreen.bounds;
        windowTV = [[UIWindow alloc] initWithFrame:frame];
        windowTV.backgroundColor = [UIColor clearColor];
       [windowTV setScreen:connectedScreen];
        windowTV.hidden = NO;
    }

    UIViewController* release = windowTV.rootViewController;
    windowTV.rootViewController = mynewViewController;
    [release removeFromParentViewController];
    [release release];
}

- (void)setTvController:(UIViewController*)mynewViewController
{     
    UIViewController* release = windowTV.rootViewController;
    windowTV.rootViewController = mynewViewController;
    [release removeFromParentViewController];
    [release release];
}

- (void)screenDidConnect:(NSNotification *)notification {
     [self myScreenInit:[notification object]];
}
link|improve this answer
This answer does not include specifics on how this is done. It only mentions that it is possible with an excited exclamation point on the end. – Cliff Nov 26 '11 at 0:54
Ok there you are cliff now please up vote it. – Dev2rights Dec 3 '11 at 13:18
I removed my down vote. There is still more to the answer here. Someone completely brand new to the API (as I was a few days ago) would not see anything on a secondary screen following what you posted above. – Cliff Dec 5 '11 at 3:58
1  
Well to be fair if your jumping into this without having learned about the view hierarchy documentation then you have tried to run before you can walk. – Dev2rights Dec 13 '11 at 13:56
feedback

There appears to be a bug in iOS 5.0 which makes this tricky. You have to enable mirroring from the running task bar (scrolling all the way the left before a second screen is detected via the API. I've posted details in my question here: How to use iOS 5+ AirPlay for a second screen

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.