NSMutableAttributedString 을 이용하면 Outline 효과를 줄 수 있다.NSAttributedStringKey let myString = "조심해라" // 1번 아웃라인 let attributes: [NSAttributedStringKey : Any] = [ NSAttributedStringKey.strokeColor: UIColor.red, NSAttributedStringKey.foregroundColor: UIColor.black, NSAttributedStringKey.strokeWidth: -3.0, NSAttributedStringKey.font: UIFont(name: "fontName", size: 80) ] let customizedText = NSMutableA..