Guest User

Untitled

a guest
Oct 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // this method is an instance method of TiModule subclass
  2. -(void)openPlayer {
  3. ENSURE_UI_THREAD_0_ARGS
  4.  
  5. // layarController is a subclass of UIViewController
  6. [[TiApp app] showModalController:layarController animated:YES];
  7.  
  8. // layar controller cfg
  9. [layarController
  10. loadLayerWithName:layerName
  11. oauthParameters:oauthParameters
  12. layerFilters:layerFilters
  13. options:LPMapViewDisabled|LPListViewDisabled];
  14.  
  15. NSLog(@"[INFO] %@ player opened",self);
  16. }
Add Comment
Please, Sign In to add comment