0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

UIColorをアレンジしてみよう!!

Posted at

いつも使っているUIColorをアレンジしてみたくないですか?? 基本的にswiftのコードではRGBを設定して色を設定しています。

ファイルを作る

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!
}

Simulator Screen Shot - iPhone 11 - 2020-08-10 at 23.19.06.png こいう感じで応用することができます!! 是非このスキルを使ってみてください
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?