hello, I am trying to develop a iphone app by using cocos2d. how can I change the color of UIAlartView ?
|
|
|
|
|
|
|
I don't believe that there is an exposed method or property for doing this. Setting the backgroundColor of the UIAlertView (as a UIView) merely puts a colored rectangular backdrop behind the alert view. I'd say that it would probably go against the common interface of the iPhone to alter this color, so I don't think it's recommended behavior (in the same way that changing the background color of an alert view in Mac OS X is not recommended). |
||
|
|
|
|
This is not something that is possible. Either you need to create your own alert-type view (including providing the animation, etc.) or use the default UIAlertView supplied by Apple. Apple tends to not expose things like the color of the UIAlertView so that the UI has a common feel across all applictions. Changing the color from app to app would be confusing to the user. |
||
|
|
|
|
See http://stackoverflow.com/questions/883208/how-to-change-background-color-of-uialertview for code that does this. |
||
|
|
