j'ai essayé en miroir l'écran d'un simple, nouvelle TabBarApplication avec iphoneos-écran-miroir pour iPad:miroir écran iPad vers VGA
http://code.google.com/p/iphoneos-screen-mirroring/
Everytime (également sans inclure le code) si je tente d'activer le Sortie TV en mode simulateur l'application se bloque sans erreur.
Si la sortie TV externe est activée, elle est noire (code include).
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;
}
Je ne pouvais pas personnellement obtenir de cette façon de travailler soit .. – stan229