Hi,
I tried mirroring the screen of a simple new TabBarApplication with iphoneos-screen-mirroring for iPad:
http://code.google.com/p/iphoneos-screen-mirroring/
Everytime (also without including the code) if I try to activate the TV-out in Simulator mode the app crashes without errors.
If the external TV-out is activated it staies black (code includet).
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;
}