UIColor를 준비해 보자! !
파일 만들기
swift 파일에서 다음과 같은 설정을 한다
UIColorExtension.swift
import UIKit
extension UIColor{
static func rgb(r:CGFloat,g:CGFloat,b:CGFloat) -> UIColor{
return self.init(red: r/255, green: g/255, blue: b/255, alpha: 1.0)
}
}
이런 식으로 사용할 수 있습니다! !
Label을 Main.storyboard에 두고 ViewController.swift와 연결합니다. 이름은 keyakiName (완전히 개인적인 취미로 미안해)로 설치를 한다
ViewController.swift
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
keyakiName.text = "欅坂46"
keyakiName.textAlignment = .center
keyakiName.textColor = UIColor.rgb(r: 185, g: 223, b: 144)
}
@IBOutlet weak var keyakiName: UILabel!
}
이런 느낌으로 응용할 수 있습니다! !
꼭이 기술을 사용해보십시오.
Reference
이 문제에 관하여(UIColor를 준비해 보자! !), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/agachan0930/items/7e627e42e0853447737f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)