이번에는 버튼에 테두리를 넣어보는 방법에 대해 알려드릴께요
일단 시작하기에 앞서 먼저 코드로 색상을 가져오는 방법을 알고있어야 합니다!
fdee.tistory.com/entry/Xcode-기능-코드로-색상-설정-및-변경하기-set-color-with-swift
1) ViewController
먼저 ViewController 에서 버튼을 연결시켜야 합니다
그러고 나서 해당 버튼에 테두리를 넣고싶다면?
위 사진처럼 두께인 borderWidth와 색상인 borderColor를 설정하면 됩니다!
< 버튼 테두리 넣기 / button border 코드 >
해당 버튼.layer.bornerWidth = 두께숫자
해당 버튼.layer.bornerColor = 색상이름
Button_Back.layer.borderWidth = 2
Button_Back.layer.borderColor = UIColor.white.cgColor
또한 위 이미지처럼 모서리를 둥글게 하고 싶을 경우엔
Button_Back.layer.cornerRadius = 10
이런식으로 곡률을 지정해주시면 됩니다!
추가적인 내용은 아래 글을 참고해주세요
fdee.tistory.com/entry/Xcode-기능-버튼-뷰-모서리-둥글게-만들기-button-view-cornerRadius
이렇게 간단하게 버튼 테두리를 넣을 수 있답니다
'iOS 개발자 > Xcode 기능 정리' 카테고리의 다른 글
Xcode 기능 - 화면전환하는 방법 / change ViewController (2) | 2021.02.03 |
---|---|
Xcode 기능 - 키보드 입력시 반응하기 - detect keyboard change (0) | 2021.02.03 |
Xcode 기능 - 코드로 색상 설정 및 변경하기 / set color with swift (0) | 2021.02.02 |
Xcode 기능 - 버튼, 뷰 모서리 둥글게 만들기 / button, view cornerRadius (0) | 2021.02.02 |
Xcode 기능 - 키보드 내리기, 사라지게 하기 / Keyboard disappear (0) | 2021.02.02 |