Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1.  
  2. %hook SpringBoard
  3.  
  4.  
  5. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  6.  
  7. %orig;
  8. UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Welcome"
  9. message:@"Hello world"
  10. delegate:nil
  11. cancelButtonTitle:@"123"
  12. otherButtonTitles:nil];
  13. [alert show];
  14. [alert release];
  15. return YES;
  16. }
  17.  
  18. %end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement