Skip to content

Instantly share code, notes, and snippets.

@marccampbell
Created December 19, 2011 19:25
Show Gist options
  • Save marccampbell/1498503 to your computer and use it in GitHub Desktop.
Save marccampbell/1498503 to your computer and use it in GitHub Desktop.
LookIO iOS Delegate Implementation
[[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