2010-08-20 24 views
2

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; 
} 

Répondre

1

j'ai vu le même comportement. Je pense que la technique qu'il utilise signifie que vous devez tester sur un appareil réel. Le même code sur un appareil réel (iPad) pour moi a bien fonctionné.