vote up 2 vote down star

I want to disable buttons in the UIAction sheet and enable them after a certain condition is true. How do I achieve this? Any ideas?

flag

0% accept rate
2  
I know it's hard to change somebody's mind, but are you sure you really want to do this that way? Maybe instead you want to just show the action sheet without the buttons that are disabled, and when some condition is true, show the other instead (hiding the other if necessary) – Ed Marty Apr 13 at 13:47

6 Answers

vote up 2 vote down

Unfortunately, there is no way to access the buttons through any "official" means, though a workaround is available.

Since the UIActionSheet is a subclass of UIView, you can obtain a list of its subviews. Each one of the subviews is one of the UIButton objects in the sheet. (You can do a class check just to make sure.) At that point you will have references to the buttons, and can perform whatever operations you wish:

NSArray *buttons = [actionSheet subviews];

for (NSObject *object in buttons) {
    if ([object isKindOfClass:[UIButton class]]) {
        UIButton *button = (UIButton *)object;
        if ([[button currentTitle] isEqualToString:@"Button 1"]) {
            // Do things with button1.
        }
    }
}
link|flag
vote up 2 vote down

Is there a circumstance that can change, while the action sheet is open, that could cause the button to become enabled? If not, I think the better approach is to alter the buttons that the sheet displays based on your condition.

Otherwise, the only way of handling this is to iterate through the sheet's subviews, like Craig said, and look for the UIButton objects. I'd be careful about using the button's title, though, because the title could (and should!) be localized for different languages. So comparisons against the title aren't all that reliable. Since you didn't create the button, you don't really know what the tag or action of each button would be, either, so that's a bit difficult, too.

Presumably, the buttons will appear in the subviews array in the order you specified them to the UIActionSheet, but since this isn't documented, there's no guarantee that they will appear in that order, or that they will continue to appear in that order in future releases of the Cocoa Touch SDK. Because of that, I'd worry mainly about being rejected from the App Store for using undocumented functionality.

link|flag
You wouldn't be rejected from the App Store for this procedure. There's always a chance that Apple will change the subview order, and your application might start acting strange, but it is not the type of 'undocumented funcionality' that they would prohibit from the store. – craig Apr 14 at 15:54
2  
True, it's not the same thing as private API, but it is private in the sense that it's based on experiment, not documentation. I would very strongly recommend against it. I'm not confident that Apple wouldn't reject it -- the agreement gives them a free hand in rejecting apps for any reason. – Alex Apr 14 at 18:53
vote up 1 vote down

I found that craig's answer didn't work for me (on OS 3.1). After a little digging around I discovered that the subviews of UIActionSheet are actually of an undocumented class UIThreePartButton

Anyway, this works for me (implemented as part of the UIActionSheetDelegete method)

- (void)willPresentActionSheet:(UIActionSheet *)actionSheet  // before animation and showing view
{
    for (UIView* view in [actionSheet subviews])
    {
    	if ([[[view class] description] isEqualToString:@"UIThreePartButton"])
    	{
    		if ([view respondsToSelector:@selector(title)])
    		{
    			NSString* title = [view performSelector:@selector(title)];
    			if ([title isEqualToString:@"Button 1"] && [view respondsToSelector:@selector(setEnabled:)])
    			{
    				[view performSelector:@selector(setEnabled:) withObject:NO];
    			}
    		}
    	}
    }
}

Hope that helps someone else, although I'd echo Ed Marty's question of whether you'd be better off just omitting these buttons from the action sheet altogether instead of doing this. As always when using undocumented features, there is a risk of app store rejection, although this code is written to fail gracefully if Apple do chnage the APIs again in a future OS release.

link|flag
vote up 0 vote down

Hi there,

Is there a way to add our own view to an UIActionSheet? That is, I want to provide list of links to other views from this action sheet without buttons. I want to remove buttons in that action sheet and instead I should add list of items.

Please provide me a quicker solution, as I am in desperate need of this.

Thanks

link|flag
You should ask a new question, rather than posting this as an answer to another question. – Daniel Rinser Jul 6 at 13:37
vote up 0 vote down

If you add the view to the action sheet, the view wont receive any event. You need to the view to the superview of the action sheet.

See below how i've added an button with touch up event:

- (void)didPresentActionSheet:(UIActionSheet *)actionSheet{
CGRect rect = CGRectMake(0,0, 320, 480);
UIButton* anImage = [[UIButton alloc] init];
[anImage setTitle:@"GHello worl" forState:UIControlStateNormal];
[anImage setTitle:@"GHello worl dfasd" forState:UIControlStateHighlighted];
[anImage setTitle:@"GHello worl selected" forState:UIControlStateSelected];
//[anImage setBackgroundImage:[UIImage imageNamed:@"photo.png"] forState:UIControlStateNormal];
[anImage addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
rect = CGRectMake(0,0, 320, 220);
anImage.frame =rect;


[actionSheet.superview addSubview:anImage];



[anImage release];

}

link|flag
vote up 0 vote down

UIActionSheet is not intended for customizing. It should display actual set of available options. It should not change button's availability while on top. Just remove unused buttons, or use custom view instead

link|flag

Your Answer

Get an OpenID
or

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