ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

【iOS 开发】基础控件:UIButton

2022-02-01 16:34:47  阅读:170  来源: 互联网

标签:uiButton3 控件 UIButton normal iOS UIColor uiButton2 uiButton


目录

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("按钮被按下,并且在控件区域内抬起")
}


效果展示:
button_normal


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)


效果展示:
button_content


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)

效果展示:
button_background


附 Github 源码:

ViewController.swift

标签:uiButton3,控件,UIButton,normal,iOS,UIColor,uiButton2,uiButton
来源: https://blog.csdn.net/java_android_man/article/details/122764537

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有