I know how to create a simple single line border around a UIView. However, I see that the XCode storyboard has a double lined white to gray border, and want to replicate this look.
Is there a way to add a double lined border with different colors to UIView using built in UIKit properties?
view.layer.borderWidth = 1
view.layer.borderColor = borderColor.cgColor
view.layer.masksToBounds = true