let followButton: UIButton = {
let button = UIButton()
button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 14)
button.setImage(UIImage(systemName: "person.fill.badge.plus"), for: .normal)
button.tintColor = twitterBlue
button.layer.cornerRadius = 5
button.layer.borderColor = twitterBlue.cgColor
button.layer.borderWidth = 1
button.setTitle("Follow", for: .normal)
button.setTitleColor(twitterBlue, for: .normal)
button.imageView?.contentMode = .scaleAspectFit
button.imageEdgeInsets = UIEdgeInsets(top: 0, left: -8, bottom: 0, right: 0)
return button
}()
button.imageEdgeInsets = UIEdgeInsets(top: 0, left: -8, bottom: 0, right: 0)
imageEdgeInsets을 이용하여 이미지를 왼쪽으로 이동시키기
'개발 > 아이오에스' 카테고리의 다른 글
switf] collectionview 셀 간격 설정하기 (0) | 2021.03.04 |
---|---|
ios] 네비게이션바 이미지, 버튼 설정 (0) | 2021.03.03 |
swift 프로젝트를 스토리보드 없이(only code) 개발 셋팅하기 Set Up Project without Storyboard (0) | 2021.03.03 |
xcode 에러 “The Local repository is out of date”…i have no branch how to solve this (0) | 2021.02.23 |
ios] Alamofire / kakao api 활용 http 통신하기 (0) | 2021.02.02 |