Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. #import <UIKit/UIKit.h>
  2.  
  3. %hook SBIconController
  4. -(void)iconTapped:(id)fp8 {
  5.  
  6. UIAlertView *alert1 = [[UIAlertView alloc] initWithTitle:@"TITLE" //Text for the title
  7. message:@"BODY MESSAGE" //Text for the actual message
  8. delegate:self
  9. cancelButtonTitle:@"CANCEL BUTTON" //Text for the cancel button
  10. otherButtonTitles:nil];
  11.  
  12. [alert1 show];
  13. [alert1 release];
  14.  
  15. }
  16. %end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement