码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-07-09 13:18:06      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:ios   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创建第一个UIButton 并增加点击事件

标签:ios   swift   uibutton   

原文地址:http://blog.csdn.net/darongzi1314/article/details/46814273

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!