버튼의 Title은 아래 사진과 같이 항상 중앙에 위치하는데 중앙이 아닌 좌측이나 우측으로 붙일 수 없을까??
contentHorizontalAlignment
속성을 사용하면 가능합니다!
private lazy var withdrawalBtn: UIButton = {
let button = UIButton(type: .system)
button.setTitle("회원 탈퇴", for: .normal)
button.titleLabel?.font = .systemFont(ofSize: 30, weight: .bold)
button.setTitleColor(.label, for: .normal)
button.contentHorizontalAlignment = .left
button.backgroundColor = .lightGray
button.addTarget(self, action: #selector(didTappedWithdrawalBtn), for: .touchUpInside)
return button
}()