Universal Getters - App


/ Published in: Objective C
Save to your folder(s)



Copy this code and paste it in your HTML
  1. //In the .h file
  2. +(MyApp_AppDelegate *)get;
  3.  
  4.  
  5. //In the .m file
  6. +(MyApp_AppDelegate *)get{
  7. return (MyApp_AppDelegate *)[[UIApplication sharedApplication] delegate];
  8. }
  9.  
  10.  
  11. //From another class file
  12. [[GamePack_AppDelegate get] introFinishedPlaying];

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.