UIActionSheet Tinting
iphone, objective-c, tint, uikit
Solution
Yes, because it's an UIView (as described by kmit) you can use the following commands: addSubview, thereby you can add your own background and order it back with sendSubviewToBack. (you can delete the old background by this: [[youralert.subviews objectAtIndex:0] removeFromSuperview])
Problem
Anyone know anyway to tint uiactionsheet in uikit?