Jump to content

UIAlertView with a link?


Go to solution Solved by Rook,

10 posts in this topic

Recommended Posts

Posted (edited)

I need to make a button in my UIAlertView thats says: Support the author. I need it to redirect to an adlink :troll:

Also, could you please code it in objective c. I'm n00b at c++ :3 Thank you in advance

 

-KingRalph

Updated by KingRalph
Posted

An idea from me: Instead leading to an advert you should use your PayPal donation link ;) However replace the 'iOSGods.com' with whatever comes in your mind

/* Inside your Tweak.xm */

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Example"
message:@"Example Text Here"
delegate:self
cancelButtonTitle:@"Dismiss"
otherButtonTitles:@"Website",nil];
[alert show];
}

 /*Inside your PreferenceBundle.mm */


- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

{
    NSString *title = [alertView buttonTitleAtIndex:buttonIndex];
    if([title isEqualToString:@"Website"])
    {
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://iOSGods.com"]];
    }
}
Posted (edited)

:o

I'm n00b. I know :3

what he said

Thanks for for your help!

+1

I would make a paypal account but

1. my mom doesn't want me to hack so she won't let me :3

2. I'm underage

Updated by KingRalph
Posted (edited)

An idea from me: Instead leading to an advert you should use your PayPal donation link ;) However replace the 'iOSGods.com' with whatever comes in your mind

 

/* Inside your Tweak.xm */UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Example"message:@"Example Text Here"delegate:selfcancelButtonTitle:@"Dismiss"otherButtonTitles:@"Website",nil];[alert show];}
/*Inside your PreferenceBundle.mm */- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{	NSString *title = [alertView buttonTitleAtIndex:buttonIndex];	if([title isEqualToString:@"Website"])	{		[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://iOSGods.com"]];	}}
Don't I need to hook a class as well?

O.i

 

------EDIT------

I see how to use it now

Updated by KingRalph
Posted (edited)

@@castix if you have the alert in your tweak.xm why would you put the clickedButton method in the .mm of the pref bundle?

Before you close the hook of whatever class of the method the UIAlert is in you need to put 

%hook SomeClass
 
-(void)someMethod
{
 
//UIAlertView code here
}
 
%new
- (void)alertView :(UIAlertView *)alertView clickedButtonAtIndex :(NSInteger)buttonIndex
{   
     if([[alertView buttonTitleAtIndex:buttonIndex] isEqualToString :@"BUTTONTITLE"])    
     {       
          [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://iOSGods.com"]];    
    }
}

%end
 
Updated by Gh0stByte
Posted

 

@@castix if you have the alert in your tweak.xm why would you put the clickedButton method in the .mm of the pref bundle?

 

Before you close the hook of whatever class of the method the UIAlert is in you need to put 

%hook SomeClass
 
-(void)someMethod
{
 
//UIAlertView code here
}
 
%new
- (void)alertView :(UIAlertView *)alertView clickedButtonAtIndex :(NSInteger)buttonIndex
{   
     if([[alertView buttonTitleAtIndex:buttonIndex] isEqualToString :@"BUTTONTITLE"])    
     {       
          [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://iOSGods.com"]];    
    }
}

%end
 

I was wondering the same thing because what if I want to make a tweak, not a patcher?

+1

Posted (edited)

what he said

Is this how to use it?

 

%hook AppController

-(void)applicationDidBecomeActive:(id)arg {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Impossible flappy hack" message:@"Hacked by KingRalph!" delegate:nil cancelButtonTitle:@"Thank You!" otherButtonTitles:nil];
        [alert show];
        [alert release];
        %orig;
}

%new

- (void)alertView :(UIAlertView *)alertView clickedButtonAtIndex :(NSInteger)buttonIndex
{   
     if([[alertView buttonTitleAtIndex:buttonIndex] isEqualToString :@"BUTTONTITLE"])    
     {       
          [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://iOSGods.com"]];    
    }
}

%end 
Updated by KingRalph
  • Solution
Posted

Is this how to use it?

 

%hook AppController

-(void)applicationDidBecomeActive:(id)arg {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Impossible flappy hack" message:@"Hacked by KingRalph!" delegate:nil cancelButtonTitle:@"Thank You!" otherButtonTitles:nil];
        [alert show];
        [alert release];
        %orig;
}

%new

- (void)alertView :(UIAlertView *)alertView clickedButtonAtIndex :(NSInteger)buttonIndex
{   
     if([[alertView buttonTitleAtIndex:buttonIndex] isEqualToString :@"BUTTONTITLE"])    
     {       
          [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://iOSGods.com"]];    
    }
}

%end 

You have to add two buttons otherwise user won't be able to close the popup and play the game normally because the one button you will have will redirect to the website.

%hook SexyApplicationDelegate

-(void)applicationDidBecomeActive:(id)arg { 

UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Title of the popup" 
					          message:@"Hacked by KingRalph for iOSGods.com!!" 
                                                 delegate:self 
  					cancelButtonTitle:@"Close" 
  					otherButtonTitles:@"Visit Us", nil]; 
[credits show];
[credits release]; 
return %orig;
}
 
%new
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
 
NSString *button = [alertView buttonTitleAtIndex:buttonIndex];
 
	if([button isEqualToString:@"Visit Us"])
	{
		[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iOSGods.com/"]];                                                                                
	}
}
%end

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