文件名称:const::sparkling_heart:const的可爱代码
文件大小:16KB
文件格式:ZIP
更新时间:2024-02-28 15:03:08
Swift
康斯特 :sparkling_heart: const的可爱代码 概要 从: class ViewController : UIViewController { struct Const { static let width : CGFloat = 100 static let height : CGFloat = 100 static let backgroundColor : UIColor = . black } override func viewDidLoad () { let subview = UIView ( frame : CGRect ( x : 0 , y : 0 , width : Const. width , height : Const. height )) view. addSubview (subview) } } 至: cl