let button = UIButton() 으로 initialize 해주기 이렇게 선언만 해줬을 때 기본 내장 속성으로는 네모난 투명 배경에 텍스트가 기본이라고 한다. 속성을 바꿔보자면 button.backgroundColor = .black // 버튼 색 바꾸기 button.layer.cornerRadius = 16 // 버튼 원으로 바꾸기 위한 속성. 버튼 크기/2 하면 될듯 button.layer.borderWidth = 1 // 테두리 굵기 설정 button.layer.borderColor = UIColor.white.cgColor // 테두리 색 설정(cgColor) button.setTitle("버튼", for: .normal) // 버튼 텍스트 설정 button.setImage("이미지", ..