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?
|
|
|||||
|
|
|
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:
|
||
|
|
|
|
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 Presumably, the buttons will appear in the |
||||||
|
|
|
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 Anyway, this works for me (implemented as part of the
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. |
||
|
|
|
|
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 |
||
|
|
|
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:
} |
||
|
|
|
|
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 |
||
|
|
