Jump to content

Credit Popup Help


Go to solution Solved by ZeshinV,

6 posts in this topic

Recommended Posts

Posted

Hi.

 

I was wondering if any of you guys can help me with this coding.

 

So, for the Credit Popup, which one is the correct one?

 

This one:

%hook FuseAPI_Delegate 
+(void) applicationDidFinishLaunching:(id)fp8 { 
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Credits" message:@"Hacked by Goggwell so enjoy it" delegate:nil cancelButtonTitle:@"Thanks Bro" otherButtonTitles:nil]; 
[alert show]; 
[alert release]; 
} 
%end

This one:

%hook FuseAPI_Delegate 
+(void) applicationDidFinishLaunching:(id)fp8 { 
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Credits" message:@"Hacked by Goggwell so enjoy it" delegate:nil cancelButtonTitle:@"Thanks Bro" otherButtonTitles:nil]; 
[alert show]; 
[alert release]; 
} 
%orig(fp8);
}
%end

Or this one:

%hook FuseAPI_Delegate 
+(void) applicationDidFinishLaunching:(id)non78 { 
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Credits" message:@"Hacked by Goggwell so enjoy it" delegate:nil cancelButtonTitle:@"Thanks Bro" otherButtonTitles:nil]; 
[alert show]; 
[alert release]; 
} 
%end
  • Solution
Posted

Use this:

%hook FuseAPI_Delegate 
+(void) applicationDidFinishLaunching:(id)non78 { 
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hacked by Goggwell" message:@"Visit iOSGods.com for more Hacks and Info!" delegate:nil cancelButtonTitle:@"Thanks!" otherButtonTitles:nil]; 
[alert show]; 
[alert release]; 
} 
%end
I use it too,it change only the name!
Posted

@

 

Alright :)

 

I use + because it was the only one I could find on Flex with applicationDidFinishLaunching and the header was Delegate.

Posted (edited)

@

 

Alright :)

 

I use + because it was the only one I could find on Flex with applicationDidFinishLaunching and the header was Delegate.

It doest have to be delegate I think Updated by kenny808

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines