Airplay no second screen...

I'm trying to present the AVRoutePickerView and respond to one of the external devices being selected and then present content to it. However, once it is selected and the picker view is dismissed there are no new screens to add content to.



// create
    AVRoutePickerView *routePickerView = [[AVRoutePickerView alloc] initWithFrame:CGRectMake(80, 30, 40, 40)];
    routePickerView.backgroundColor = [UIColor redColor];
    routePickerView.delegate = self;
    [self.view addSubview:routePickerView];



I'd like to simply be able to select an external device and create a new window to attach the screen to and then add a view to add some labels to so it presents on the external device. Help, please!