Home > OS >  How do I set UIButton shadow color in Xcode 13 inspector?
How do I set UIButton shadow color in Xcode 13 inspector?

Time:07-05

How do I set UIButton shadow color in Xcode 13 storyboard ui element inspector? I see only control for the text itself and for shadow offset. Thanks!

CodePudding user response:

Change the button's style from "Plain" to "Default" and you will see a property where you can define the shadow color of the UIButton.

Interface Builder options of Style "Default"

  • Related