[iOS] UIButton 타이틀 정렬

Han's·2023년 8월 1일
0

TIL

목록 보기
10/20
post-thumbnail

버튼의 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
    }()
profile
 iOS Developer

0개의 댓글