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

How can I change the color of UIActionSheet button's color?

share|improve this question

3 Answers

up vote 4 down vote accepted

Unfortunately, without using undocumented API's, there is no official way to change the button's color on a UIActionSheet. You may be able to customize this if you subclass the UIActionSheet control.

See this example: http://blog.corywiles.com/customizing-uiactionsheet-buttons

share|improve this answer
Did you ever did this? Any sample code will be really helpful. – Abhinav Nov 22 '10 at 17:47
See the link I posted above. – Evan Mulawski Nov 22 '10 at 17:50
Thank you so much!!! – Abhinav Nov 22 '10 at 18:21

I have created child class UICustomActionSheet, which allows customize fonts, colors and images of buttons inside UIActionSheet. It is absolutely safety for appstore, you can find code of this class on next link:

https://github.com/gloomcore/UICustomActionSheet

Enjoy it!

share|improve this answer
Are you sure it's ok for the App Store? Anyway the result is great! – Emanuele Fumagalli Mar 7 '12 at 14:35
Yes, I am sure, I have used it on apps for Appstore. This class is using no private methods, so it's clear. – Gloomcore Mar 12 '12 at 13:12
That's awesome! Thanks for posting! – yonix Apr 22 '12 at 10:16

We can use background images to do it. I think it is the easiest way.

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Actionsheet" delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:nil];
        [actionSheet addButtonWithTitle:@"Button 1"]; //Blue color
        [actionSheet addButtonWithTitle:@"Button 2"];
        [actionSheet addButtonWithTitle:@"Cancel"];
        [actionSheet addButtonWithTitle:nil];
        [actionSheet setCancelButtonIndex:2];
        [actionSheet setDestructiveButtonIndex:1];
        [actionSheet showInView:self.view];
        UIButton *button = [[actionSheet subviews] objectAtIndex:1];
        UIImage *img = [button backgroundImageForState:UIControlStateHighlighted];//[UIImage imageNamed:@"alert_button.png"];
        [button setBackgroundImage:img forState:UIControlStateNormal];
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.