Skip to content

Instantly share code, notes, and snippets.

@kylehowells
Created July 28, 2011 17:00
Show Gist options
  • Save kylehowells/1111952 to your computer and use it in GitHub Desktop.
Save kylehowells/1111952 to your computer and use it in GitHub Desktop.
Modern Version of a 3 year old tutorial
%hook SBApplicationIcon
-(void)launch{
UIAlertView* __launchView = [[[UIAlertView alloc] init] autorelease];
__launchView.title = @"No way muchacho";
__launchView.message = @"You can't touch dis!";
[__launchView addButtonWithTitle:@"Dismiss"];
[__launchView show];
}
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment