UILabel에 여러개의 attributeText를 적용하다보니 가장 마지막에 작성된 속성만 적용되거나 레이블 선언부 혹은 기타 설정을 해주는 함수에서 코드가 매우 길어지게 되곤한다. let someLabel: UILabel = { let label = UILabel() label.textAlignment = .center label.font = .systemFont(ofSize: 16, weight: .bold) let colorAttribute = [ NSAttributedString.Key.foregroundColor: UIColor.blue] let attributedString = NSAttributedString(string: label.text!, attributes: colorAttribu..