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 know I've done this before but I just can't figure it out again.

What is the method I would use to see if a cancel button was pressed. I don't want to do it based on the button index. There is a way to do it, something like:

[alertView isCancelIndex:index];

Anyone know?

share|improve this question
5  
That kind of questions are easily solved by the documentation. You'd also be saving a lot of time. It's as easy as googling for UIAlertView class reference, clicking on Apple's link, and scrolling down a little to the list of properties and methods. – EmilioPelaez Aug 3 '11 at 15:29

4 Answers

up vote 15 down vote accepted

The UIAlertView has a property of cancel button index

@property(nonatomic) NSInteger cancelButtonIndex

Usage

[alertView cancelButtonIndex]
share|improve this answer
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {

  if (buttonIndex == [alertView cancelButtonIndex]) {
    NSLog(@"The cancel button was clicked for alertView");
  }
// else do your stuff for the rest of the buttons (firstOtherButtonIndex, secondOtherButtonIndex, etc)
}

share|improve this answer

In the delegate of UIAlertView is the method

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

And then:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    NSInteger cancelIndex = [alertView cancelButtonIndex];
    if (cancelIndex != -1 && cancelIndex == buttonIndex)
    {
        // Do something...
    }
}
share|improve this answer
The OP specifically said not using that method – rich Aug 3 '11 at 15:34
1  
I think the OP meant that he didn't want to hard-code the index. (To the extent that he knew what he meant.) – Hot Licks Aug 3 '11 at 15:39

UIAlertView's delegate has the method -alertViewCancel:. I believe this is what you are looking for.

I found it in Apple's official documentation, here. Try searching there next time.

share|improve this answer

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.