Swift UIButton

Posted 向日葵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift UIButton相关的知识,希望对你有一定的参考价值。


        let button = UIButton(type:.system);
        button.frame = CGRect.init(x:100,y:150,width:160,height:30);
        button.setTitle("SwiftBtton", for: .normal);
        button.backgroundColor = UIColor.brown;
        button.titleLabel?.font = UIFont.systemFont(ofSize: 17);
        button.tintColor = UIColor.cyan;
        button.addTarget(self, action: #selector(buttonDidClick), for: .touchUpInside);
        self.view.addSubview(button);
        
    }
    func buttonDidClick() {
        print("按钮被点击了");
    }

以上是关于Swift UIButton的主要内容,如果未能解决你的问题,请参考以下文章

swift [Swift Notes]在学习Swift #Swift的同时收集笔记

Swift 反射

Swift入门系列--Swift官方文档(2.2)--中文翻译--About Swift 关于Swift

swift 示例BS swift.swift

swift swift_bug.swift

ios 整理(一)swift和oc的区别