I am developing an iPad game. I have this situation. When the user/player's game center account is not signed in, it will prompt an alert box, to let player choose, either to:
Login existing account
Create new account
Cancel
I am interested on 3rd option ("cancel"). How to handle or assign a function, when user click the "cancel" option. I tried this:
- (void) alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
if(buttonIndex == 2){
NSLog(@"Cancel called");
....
But not working. Is there any other solution?
THanks