Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 425 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 425 Bytes

SFSymbols

How to set scale

let configuration = UIImage.SymbolConfiguration(scale: .large)
let symbolImage = UIImage(systemName: "square.and.pencil", withConfiguration: configuration)

imageView.image = symbolImage

How to change color

let chevronImage = UIImage(systemName: "chevron.right")!.withTintColor(.systemTeal, renderingMode: .alwaysOriginal)
chevonImageView.image = chevronImage