项目作者: sinbadbd

项目描述 :
UIkit custom object
高级语言: Swift
项目地址: git://github.com/sinbadbd/UIKit-CustomObjects.git
创建时间: 2021-03-30T07:01:22Z
项目社区:https://github.com/sinbadbd/UIKit-CustomObjects

开源协议:Apache License 2.0

下载


USES: MyLabel

  1. class ViewController: UIViewController {
  2. var label : MyLabel? = nil // Add here
  3. override func viewDidLoad() {
  4. super.viewDidLoad()
  5. label = MyLabel(
  6. text: "The Demo Text",
  7. textColor: UIColor.red,
  8. fontSize: UIFont.systemFont(ofSize: 20),
  9. textAlign: .center
  10. )
  11. label?.frame = CGRect(x: 20, y: 80, width: 300, height: 40)
  12. view.addSubview(label!)
  13. }
  14. }

USES: MyUIButton

  1. class ViewController: UIViewController {
  2. }