I've studied some approaches from other stack overflow threads, but I can't this to work as expected, but perhaps there is another approach.

As confusing things are now, I'm going to reference the Windows, View Controllers and Views with X and Y. X being the iPad and Y being the TV.

Basically what I have are two window objects, one for the iPad and one for a TV. View Controller X in Window X switches its Container X View's subview to video player controls. What I need to have is Container X's View add its video player to Window Y >> View Controller Y >> Container Y View as a subview.

The controls appear and are working fine on the iPad. I can hear the video, but I cannot SEE it on the simulated external screen. As a stand alone video player without being connected to a TV, displaying the video on the iPad works fine. I also have been able to add the player as a subview to Window Y >> View Controller Y's view and see it on the TV without adding it to the Container Y view. However, in order to follow the pattern of adding and removing views as I have been, I don't want to have it done this way. I need to add the video as a subview to Container Y's view.

I need to access or reference Container Y from Container X subview. I've tried adding a tag to Container Y, but they do not work as expected.

In Controller Y's view controller, I've created the container view with tag 9000:

CGRect frame = CGRectMake(0, 0, 1024, 768);
containerExView = [[UIView alloc] initWithFrame:frame];
[containerExView setTag:9000];

In Container X's subview (the video player view) I've created a delegate pointer in the initWithFrame method:

mainMenuAppDelegate *del = (mainMenuAppDelegate *)[[UIApplication sharedApplication] delegate];

Custom controls are successfully added to Container X's subview. The video player is created and frame is set:

        NSString *url = [[NSBundle mainBundle] 
                         pathForResource:[video_List objectAtIndex:vidNum] 
                         ofType:@"mov"];

        player = [[MPMoviePlayerController alloc] 
              initWithContentURL:[NSURL fileURLWithPath:url]];


        [player setControlStyle:MPMovieControlStyleNone];
        player.view.frame = CGRectMake(0, 0, 1024, 768);

Here's me trying to reference the tag and add it to Y's container as a subView:

    UIView *containerExViewP = (UIView*)[del.switchExVC.view viewWithTag:9000];
    [containerExViewP addSubview:player.view];
    [player play];

And I see nothing on the external screen, but I hear it playing, and I can control it with my iPads controls. Any ideas? Thanks.

link|improve this question

73% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.