Swift button text 변경하기
사슴비행기
button을 생성했을 때 title을 plain으로 했냐 아니면 Attributed로 했냐에 따라서 달라진다. 일단 plain은 self.transButton.setTitle("우아아아아", for: .normal) 이렇게 바꾸면 되고, Attributed는 let aa = NSAttributedString(string: "우아아아아아아") self.transButton.setAttributedTitle(aa, for: .normal) 이렇게 변경할 수 있다. Attributed에서는 여러가지 스타일을 적용할 수 있어서 많이 쓰는 것 같은데 나는 text와 color, underline을 줘 보았다. //상황에 따라 text 변경 let text = "[Amway Korea 바로가기]" //text를 ..