Created
December 19, 2011 19:25
-
-
Save marccampbell/1498503 to your computer and use it in GitHub Desktop.
LookIO iOS Delegate Implementation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[LIOLookIOManager sharedLookIOManager] performSetupWithDelegate:aDelegate]; | |
// Delegate protocol | |
@protocol LIOLookIOManagerDelegate | |
- (UIWindow *)lookIOManangerMainWindowForHostApp:(LIOLookIOManager *)aManager; | |
- (void)lookIOManager:(LIOLookIOManager *)aManager didUpdateEnabledStatus:(BOOL)lookioIsEnabled; | |
- (BOOL)lookIOManager:(LIOLookIOManager *)aManager shouldRotateToInterfaceOrientation:(UIInterfaceOrientation)anOrientation; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment