Custom String
-
나만의 String 만들기, NSMutableAttributedStringiOS 2019. 10. 14. 15:31
String에 폰트, 색, 굵기 등 여러가지 attributes를 주고 싶을 때 사용한다. String attribute는 [NSAttributedString.Key: Any]의 dictionary 형태로 관리되므로, NSAttributedString.key가 attribute의 이름이 되겠다. var multipleAttributes = [NSAttributedString.Key : Any]() multipleAttributes[NSAttributedString.Key.foregroundColor] = UIColor.green multipleAttributes[NSAttributedString.Key.backgroundColor] = UIColor.yellow multipleAttributes[NSAt..