Press ESC to close

Or check our Popular Categories...

swift

769   Articles
769
1 Min Read
0 0

### UIView
lazy var topView: UIView = {
let topView = UIView()
topView.frame = CGRect(x: 0, y: 0, width: self.frame.width, height: 48 + kSafeTopPadding)
topView.backgroundColor = UIColor.init(red: 46.0/255.0, green: 144.0/255.0, blue: 133.0/255.0, alpha: 1.0)
return topView
}()