Swift version: 5.10
All UIView
subclasses have a built-in way to draw a border around them using their underlying CALayer
. For example, to draw a 10-point red border around a view, you'd use this:
yourView.layer.borderWidth = 10
yourView.layer.borderColor = UIColor.red.cgColor
Note that you need to use the cgColor
property of your UIColor
in order for this to work. Adding a border to a view even works if you also round the corners of your view – it's very flexible!
SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Available from iOS 3.2
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.