• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

iOS 开发基础控件UIButton

武飞扬头像
Lucky_William
帮助5

iOS 开发之基础控件 UIButton

1. UIButton 常规使用


let uiButton = UIButton(type: UIButton.ButtonType.system)
// UIButton 设置位置
uiButton.frame = CGRect(x: 10, y: 230, width: 360, height: 38)
// UIButton 设置颜色
uiButton.backgroundColor = UIColor.cyan
// UIButton 设置标题
uiButton.setTitle("UIButton title", for: .normal)
// UIButton 设置标题文字颜色
uiButton.setTitleColor(UIColor.black, for: .normal)

// UIButton 添加点击事件
uiButton.addTarget(self, action: #selector(touchUpInside), for: .touchUpInside)
// 添加 UIButton 到视图上
self.view.addSubview(uiButton)


@objc func touchUpInside() {
    print("按钮被按下,并且在控件区域内抬起")
}

学新通

效果展示:
学新通

2. UIButton 设置内容图片


let uiButton2 = UIButton(type: UIButton.ButtonType.custom)
uiButton2.frame = CGRect(x: 10, y: 280, width: 360, height: 80)
uiButton2.backgroundColor = UIColor.cyan
uiButton2.setTitle("Content Image", for: .normal)
uiButton2.setTitleColor(UIColor.black, for: .normal)
// UIButton 设置内容图片
uiButton2.setImage(UIImage(named: "demo"), for: .normal)
self.view.addSubview(uiButton2)

效果展示:
学新通

3. UIButton 设置背景图片

let uiButton3 = UIButton(type: UIButton.ButtonType.custom)
uiButton3.frame = CGRect(x: 10, y: 370, width: 360, height: 80)
uiButton3.backgroundColor = UIColor.cyan
uiButton3.setTitle("Background Image", for: .normal)
uiButton3.setTitleColor(UIColor.black, for: .normal)
// UIButton 设置背景图片
uiButton3.setBackgroundImage(UIImage(named: "demo"), for: .normal)
self.view.addSubview(uiButton3)

效果展示:
学新通

附 Github 源码:

ViewController.swift

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhfhkgea
系列文章
更多 icon
同类精品
更多 icon
继续加载