I have a UIActionSheet that I set up like this:

-(void)trash:(id)sender
{
UIActionSheet *sheet = [[[UIActionSheet alloc] initWithTitle:@"Delete" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Remove text" otherButtonTitles:@"Remove tags", nil] autorelease];

[sheet showInView:self.view];

}

The sheet appears from the bottom of the screen, as intended, and all correct. However none of the buttons are active. The only way out is to touch the Home button.

Is there something I am missing?

The view self.view is the view of the view controller. The only odd thing about it is that it is less than the full screen height because it sits above the keyboard.

// Never called
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex;
{
    NSLog(@"%d",buttonIndex);
}

// Never called
- (void)actionSheet:(UIActionSheet *)actionSheet     didDismissWithButtonIndex:(NSInteger)buttonInde
{

}

// Never called
- (void)actionSheet:(UIActionSheet *)actionSheet     willDismissWithButtonIndex:(NSInteger)buttonIndex
{

}

// Called if I hit Home button
- (void)actionSheetCancel:(UIActionSheet *)actionSheet
{

}


// Called second
- (void)didPresentActionSheet:(UIActionSheet *)actionSheet
{

}

// Called first
- (void)willPresentActionSheet:(UIActionSheet *)actionSheet
{

}
link|improve this question

50% accept rate
2  
Interestingly if I do this: [sheet showInView:self.view.window]; it works perfectly. – Steve Weller May 18 '09 at 4:15
I've experienced this as well. Since showing it in the window works well, that's the method I've been using. – rpetrich May 18 '09 at 5:20
feedback

3 Answers

If there is a keyboard on the view, chances are the textfield/textview for which the keyboard is visible is the first responder. For any control to respond to touches, it has to be the first responder.

Make sure that your action sheet is the first responder when you display it.

link|improve this answer
feedback

Double-check the firstResponder status.

link|improve this answer
feedback

You need to show your view not in self.vew but in Appdelegate's root view.

Use [appDelegate.window.subviews objectAtIndex:0];

I have this method in AppDelegate:

-(UIView *) getRootView {
return [self.window.subviews objectAtIndex:0];

}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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