본문 바로가기
IOS

iOS SF Symbols 사용하기

by iOS_woo 2022. 3. 20.

유용한  SF Symbols를 사용하는 방법입니다. 

 

우선 공식문서에서 SF Symbols 앱을 다운로드해줍니다. 

https://developer.apple.com/sf-symbols/

 

Apple Developer

There’s never been a better time to develop for Apple platforms.

developer.apple.com

설치 후에 실행하면 무려 3300가지의 심볼을 볼 수 있고,

원하는 키워드를 검색하여 찾을 수 있습니다. 

이후 코드에 적용 할 때에는 코드의 이름을 입력하면 완료!

private let shareButton: UIButton = {
        let button = UIButton()
        button.setImage(UIImage(systemName: "square.and.arrow.up"), for: .normal)
        button.tintColor = .systemBlue
        
        return button
    }()

앱에서 흔하게 볼 수 있는 공유 버튼이 만들어집니다. :)

또한 다른 분이 잘 정리해주신 글이 있어서 링크도 남깁니다. 
https://medium.com/official-podo/%EA%B0%9C%EB%B0%9C%EC%9E%90%EC%99%80-%EB%94%94%EC%9E%90%EC%9D%B4%EB%84%88%EB%A5%BC-%EC%9C%84%ED%95%9C-custom-sf-symbol-%EB%A7%8C%EB%93%9C%EB%8A%94-%EB%B2%95-374b14448db6

댓글