博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
swift学习之UIButton
阅读量:6137 次
发布时间:2019-06-21

本文共 3472 字,大约阅读时间需要 11 分钟。

//

//  ViewController.swift

//  button

//

//  Created by su on 15/12/7.

//  Copyright © 2015年 tian. All rights reserved.

//

 

import UIKit

 

class ViewController: UIViewController {

 

    override func viewDidLoad() {

        super.viewDidLoad()

        //创建一个button

        let button:UIButton = UIButton(frame: CGRect(x: 110, y: 70, width: 100, height: 50))

        button.setTitleColor(UIColor.redColor(), forState: UIControlState.Normal)

        

        //设置不同状态的文字,依次是普通状态和按下状态

        button.setTitle("你点我呀!", forState: UIControlState.Normal)

        button.setTitle("你还真点啊", forState: UIControlState.Highlighted)

        //通过addTarget方法为按钮添加交互响应,依次为按下事件

        button.addTarget(self, action: "press:", forControlEvents: UIControlEvents.TouchUpInside)

        self.view.addSubview(button)

        

        //创建图形按钮

        let normalImage = UIImage(named: "btn1")

        let highLightedImage = UIImage(named: "btn2")

        let button2 = UIButton(frame: CGRect(x: 110, y: 200, width: 100, height: 30))

        

        button2.setImage(normalImage, forState: UIControlState.Normal)

        button2.setImage(highLightedImage, forState: UIControlState.Highlighted)

        self.view.addSubview(button2)

        

        //创建一个图片加文字的按钮

        

        let button3 = UIButton(frame: CGRect(x: 0, y: 250, width: 400, height: 30))

        button3.setImage(UIImage(named: "btn1"), forState:UIControlState.Normal)

        button3.titleLabel?.font = UIFont.systemFontOfSize(14)

        

        button3.imageView?.contentMode = UIViewContentMode.ScaleAspectFit

        button3.setTitleColor(UIColor.blackColor(), forState: UIControlState.Normal)

        button3.setTitle("fsdfdsfsdfsadf", forState: UIControlState.Normal)

        self.view.addSubview(button3)

        

        //从系统定义的按钮类型常见button

        let btn4:UIButton = UIButton(type: UIButtonType.Custom)

        btn4.setTitleColor(UIColor.blackColor(), forState: UIControlState.Normal)

        btn4.setTitle("12344444", forState: UIControlState.Normal)

        btn4.titleLabel!.font = UIFont.systemFontOfSize(14)

        btn4.frame = CGRect(x: 110, y: 300, width: 100, height: 100)

        self.view.addSubview(btn4)

        

        

        //创建部分圆角的按钮

        

        let btn5:UIButton = UIButton(type: UIButtonType.Custom)

        btn5.backgroundColor = UIColor.redColor()

        btn5.setTitleColor(UIColor.blackColor(), forState: UIControlState.Normal)

        btn5.setTitle("345555", forState: UIControlState.Normal)

        btn5.titleLabel!.font = UIFont.systemFontOfSize(14)

        btn5.frame = CGRect(x: 110, y: 400, width: 100, height: 100)

        self.view.addSubview(btn5)

//        UIRectCornerTopLeft     = 1 << 0,

//        UIRectCornerTopRight    = 1 << 1,

//        UIRectCornerBottomLeft  = 1 << 2,

//        UIRectCornerBottomRight = 1 << 3,

//        UIRectCornerAllCorners  = ~0UL

//        let beizer:UIBezierPath = UIBezierPath(roundedRect: btn5.bounds, byRoundingCorners: UIRectCorner.TopLeft|UIRectCorner.TopRight, cornerRadii: CGSize(width: 15, height: 15))

        let beizer:UIBezierPath = UIBezierPath(roundedRect: btn5.bounds, byRoundingCorners: [UIRectCorner.TopLeft,UIRectCorner.TopRight], cornerRadii: CGSize(width: 15, height: 15))

        let shape:CAShapeLayer = CAShapeLayer()

        shape.path = beizer.CGPath

        btn5.layer.mask = shape

 

        

        //创建border按钮

        let btn9:UIButton = UIButton(frame: CGRect(x: 50, y: 500, width: 100, height: 35))

        btn9.backgroundColor = UIColor.whiteColor()

        btn9.setTitle("边框按钮", forState: UIControlState.Normal)

        btn9.setTitleColor(UIColor.blackColor(), forState: UIControlState.Normal)

        btn9.layer.borderColor = UIColor.blackColor().CGColor

        btn9.layer.borderWidth = 1

        btn9.layer.cornerRadius = 5

        self.view.addSubview(btn9)

        

        

        

        

        

    }

    func press(sender:UIButton){

        print("你按下了按钮")

    }

 

    override func didReceiveMemoryWarning() {

        super.didReceiveMemoryWarning()

        // Dispose of any resources that can be recreated.

    }

 

 

}

 

转载于:https://www.cnblogs.com/tian-sun/p/5026396.html

你可能感兴趣的文章
python模块之hashlib: md5和sha算法
查看>>
解决ros建***能登录不能访问内网远程桌面的问题
查看>>
pfsense锁住自己
查看>>
vsftpd 相关总结
查看>>
bash complete -C command
查看>>
解决zabbix 3.0中1151端口不能运行问题
查看>>
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
dubbo
查看>>
【Git入门之四】操作项目
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
高利率时代的结局,任重道远,前途叵测
查看>>
phpcms v9栏目列表调用每一篇文章内容方法
查看>>
python 自定义信号处理器
查看>>
luov之SMTP报错详解
查看>>
软件概要设计做什么,怎么做
查看>>
dwr
查看>>
java的特殊符号
查看>>