비전공자 개발일기

SafeArea Color Control 본문

SWIFT

SafeArea Color Control

HiroDaegu 2023. 3. 6. 19:39
728x90
SMALL

https://github.com/WallabyStuff/SafeAreaBrush

 

GitHub - WallabyStuff/SafeAreaBrush

Contribute to WallabyStuff/SafeAreaBrush development by creating an account on GitHub.

github.com

1. pod init -> podFile -> pod 'SafeAreaBrush' 입력 후 저장 -> pod install

 

import UIKit
import SafeAreaBrush 

class ViewController: UIViewController {

    override func viewDidLoad() {
        
        super.viewDidLoad()
        
        fillSafeArea(position: .top, color: UIColor(red: 34 / 255, green: 34 / 255, blue: 34 / 255, alpha: 1.0))
        
    }
    
}

 

728x90
LIST