Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an UIAlertView that shows with this code that asks you to rate the application in the appstore.

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Rate on the Appstore!" 
                                                message:@"" 
                                               delegate:self 
                                      cancelButtonTitle:@"Later" 
                                      otherButtonTitles:@"OK", nil];
[alert show];
[alert release];

But I cannot figure out how to add an action to the OK button that takes you to the app in the appstore.

share|improve this question

2 Answers

up vote 8 down vote accepted

How about this?

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
    if (buttonIndex != [alertView cancelButtonIndex]) {
        NSLog(@"Launching the store");
        //replace appname with any specific name you want
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/appname"]];
    } 
}
share|improve this answer
Please change the method name to clickedButtonAtIndex .... There might be a chance that people may copy the same method name mentioned above and where the method will never be called.... – Pradeep Reddy Kypa Jun 13 '12 at 15:19
Just a point, in ViewController.h, add: <UIAlertViewDelegate> after @interface ViewController : UIViewController so it looks like this: "@interface ViewController : UIViewController <UIAlertViewDelegate>" – JomanJi Jan 19 at 9:42

You want something like the following:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
    if (buttonIndex == 0) {
        NSLog(@"Clicked button index 0");
        // Add the action here
    } else {
        NSLog(@"Clicked button index other than 0");
        // Add another action here
    }
}

NSLog's appear in the console when you press a button and help out whenever you want to debug/test anything.

Then for the action that you want, you'd write something like:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"url_to_app_store"]];
share|improve this answer
For a 2 button alert, instead of checking if the button index is 0, you would want to check if the cancel button was pressed or not if (buttonIndex != [alertView cancelButtonIndex]). – chown Apr 21 '12 at 1:56
I was just adding extra help for checking in the future if any other buttons were to be pressed, then he could easily see and proceed. – Domness Apr 21 '12 at 2:00
Please change the method name to clickedButtonAtIndex .... There might be a chance that people may copy the same method name mentioned above and where the method will never be called.... – Pradeep Reddy Kypa Jun 13 '12 at 15:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.