Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I often see something like the bottom picture in iphone apps and was wondering if there is a standard way to achieve that.

To be clear, it is a view that covers half the screen, usually with buttons to choose different options. When I ask for standard way, I meant UITableView, UIAlertView, UIScrollView, etc...

iphone screenshot

share|improve this question

2 Answers

up vote 3 down vote accepted

Yes, it is called UIActionSheet. Here's an example:

        UIActionSheet *takeAction = [[UIActionSheet alloc] initWithTitle:@"" 
                                                                delegate:self 
                                                       cancelButtonTitle:@"Cancel" 
                                                  destructiveButtonTitle:@"Delete"
                                                       otherButtonTitles:@"New...", @"Open...", @"Save As...", nil];        
        [takeAction setActionSheetStyle:UIActionSheetStyleDefault];
// use this to implement it with a tabBarController; similar ways to work with navBars
        [takeAction showFromTabBar:(UITabBar *)[[self tabBarController] view]];
        [takeAction release];

As with an alertView, you respond to buttons with

- (void)actionSheet:(UIActionSheet *)actionSheet 

    clickedButtonAtIndex:(NSInteger)buttonIndex
    {
        if (buttonIndex == [actionSheet destructiveButtonIndex]) {
            [self deleteIt];
        } else if (buttonIndex == [actionSheet cancelButtonIndex]) {
        } else if (buttonIndex == 1) {
            [self createNew];
        } else if (buttonIndex == 2) {
            [self openSaved];
        } else if (buttonIndex == 3) {
            [self saveAs];
        } else {
        }
    }

Also, make sure to declare the viewController to be the delegate:

<UIActionSheetDelegate>
share|improve this answer

You are looking for UIActionSheet: http://developer.apple.com/library/ios/documentation/uikit/reference/UIActionSheet_Class/Reference/Reference.html


Before using these (or any other UI element) also check what the iOS Human Interface Guidelines say about how you should use them. I often see action sheets abused, sadly enough.

share|improve this answer
Sweetness. Thank you. I will def be trying it out tmrw!!! – Yko Mar 11 '11 at 4:56

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.