swift helpful extensions:该存储库包含有用的UIKitSwiftUI项目扩展 源码
Swift有用的扩展 该存储库包含有用的UIKit / SwiftUI项目扩展 UIKit 可以轻松创建渐变色用法示例: currentView.backgroundColor = Gradient.create(with: [.white, .black], bounds: currentView.bounds) 可以通过RGB值和十六进制值轻松创建UIColor用法示例: currentView.backgroundColor = UIColor(red: 148, green: 16, blue: 88) anotherView.backgroundColor = UIColor(hex: "f3d3da") 可以轻松地在标签上添加underLine用法示例: currentLabel.underline() 可以轻松地添加(删除)子VC(从)母公司的使用VC示例: cla
用户评论