iPad 用の iphoneos-screen-mirroring を使用して、単純な新しい TabBarApplication の画面をミラーリングしてみました。
http://code.google.com/p/iphoneos-screen-mirroring/
シミュレーター モードで TV-out をアクティブにしようとすると、毎回 (コードを含めずに) アプリがエラーなしでクラッシュします。
外部 TV 出力が有効になっている場合、黒のままになります (コードを含む)。
appDelegate:
#import "iPadVGAAppDelegate.h"
#import "UIApplication+ScreenMirroring.h"
@implementation iPadVGAAppDelegate
@synthesize window;
@synthesize tabBarController;
#pragma mark -
#pragma mark Application lifecycle
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[[UIApplication sharedApplication] setupScreenMirroringWithFramesPerSecond:20.0];
// Add the tab bar controller's current view as a subview of the window
[window addSubview:tabBarController.view];
[window makeKeyAndVisible];
return YES;
}