Search code examples
iphoneobjective-cuikittint

UIActionSheet Tinting


Anyone know anyway to tint uiactionsheet in 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])