swift创建第一个UIButton 并增加点击事件

前端之家收集整理的这篇文章主要介绍了swift创建第一个UIButton 并增加点击事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


var button1 = UIButton(frame: CGRectMake(100,200,100,40)) button1 .setTitle("first button",forState:UIControlState.Normal) button1.addTarget(self,action: "firstSwift:",forControlEvents: UIControlEvents.TouchUpInside) self.view.addSubview(button1) button1.backgroundColor=UIColor.yellowColor() button1.setTitleColor(UIColor.blackColor(),forState: UIControlState.Normal) func firstSwift(sender:UIButton) { println("第一个button的点击事件") }

原文链接:/swift/326699.html

猜你在找的Swift相关文章