- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Swift UIButton使用教程由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
一.UIButton基本操作 。
1.创建按钮 。
1
2
3
|
let btn: UIButton = UIButton()
//没有样式
let btns:UIButton =UIButton(type: UIButtonType)
//有样式
let button = UIButton(frame:CGRect(x:10, y:150, width:100, height:30))
//简化创建方式
|
UIButtonType有以下类型 。
1
2
3
4
5
6
7
8
9
10
11
12
|
public
enum
UIButtonType : Int {
case
custom
// no button type
@available(iOS 7.0, *)
case
system
// standard system button
case
detailDisclosure
case
infoLight
case
infoDark
case
contactAdd
public
static
var roundedRect: UIButtonType { get }
// Deprecated, use UIButtonTypeSystem instead
}
//使用
let btn: UIButton = UIButton(type: .Custom)
|
UIButton状态类型 。
/** Normal (默认状态) Highlighted (高亮状态)点击按钮不放 Disabled (使能状态)就是是否可用状态-->禁用的状态才会显现 Selected (选中状态)通过selected属性设置 */ 。
2、UIButton设置字内容和颜色 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//显示文字
button1.setTitle(
"普通状态"
,
for
: .normal)
button1.setTitle(
"高粱状态"
,
for
: .highlighted)
button1.setTitle(
"禁用状态"
,
for
: .disabled)
//显示文字颜色
button1.setTitleColor(UIColor.red,
for
: .normal)
button1.setTitleColor(UIColor.blue,
for
: .highlighted)
button1.setTitleColor(UIColor.cyan,
for
: .selected)
button1.setTitleColor(UIColor.cyan,
for
: .disabled)
//阴影文字颜色设置
button1.setTitleShadowColor(UIColor.cyan,
for
: .normal)
button1.setTitleShadowColor(UIColor.green,
for
: .highlighted)
button1.setTitleShadowColor(UIColor.brown,
for
: .disabled)
button1.setTitleShadowColor(UIColor.darkGray,
for
: .selected)
|
3.UIButton设置背景颜色和背景图片 。
1
2
3
4
|
//背景颜色
button2.backgroundColor = UIColor.orange
//背景图片
button4.setBackgroundImage(UIImage(named:
"XXX"
),
for
: .normal)
|
4.UIButton设置字体大小 。
1
|
button.titleLabel?.font = UIFont.systemFont(ofSize: 12)
|
5.禁用UIButton 。
1
2
|
button.isEnabled =
false
button.isEnabled =
true
|
6.设置圆角 。
1
2
|
button.layer.cornerRadius = 5
button.layer.masksToBounds =
true
|
7.设置边框宽度/颜色 。
1
2
|
button.layer.borderWidth = 2
button.layer.borderColor = UIColor.red.cgColor
|
8.设置背景图片为圆角 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
buttonImage.setImage(UIImage(named:
"1"
) , forState: UIControlState.Normal)
//设置背景图片为圆角
buttonImage.imageView?.layer.cornerRadius = 50
默认情况下按钮会被渲染成单一颜色;系统蓝
button.setImage(UIImage(named:
"icon1"
),forState:.Normal)
//设置图标
button.adjustsImageWhenHighlighted=
false
//使触摸模式下按钮也不会变暗(半透明)
button.adjustsImageWhenDisabled=
false
//使禁用模式下按钮也不会变暗(半透明)
也可以设置成保留图标原来的颜色
let iconImage = UIImage(named:
"icon2"
)?.withRenderingMode(.alwaysOriginal)
button.setImage(iconImage,
for
:.normal)
//设置图标
button.adjustsImageWhenHighlighted =
false
//使触摸模式下按钮也不会变暗(半透明)
button.adjustsImageWhenDisabled =
false
//使禁用模式下按钮也不会变暗(半透明)
|
9.UIButton上图片和文字调整 。
UIButton上添加图片和文字,有时需要我们调整方向为逆时针方向,上、左、下、右依次去设置的 。
1
2
3
|
btn.imageEdgeInsets =UIEdgeInsetsMake(top: CGFloat, left: CGFloat, bottom: CGFloat, right: CGFloat)
btn.titleEdgeInsets =UIEdgeInsetsMake(top: CGFloat, left: CGFloat, bottom: CGFloat, right: CGFloat)
|
实例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//创建一个图片一个文字的按钮
let btn2: UIButton = UIButton(type: .Custom)
btn2.frame = CGRectMake(50, 100, 120, 35)
btn2.setImage(UIImage(named:
"1"
), forState: .Normal)
btn2.backgroundColor = UIColor.blackColor()
btn2.titleLabel?.font = UIFont.systemFontOfSize(20)
btn2.imageView?.contentMode = UIViewContentMode.ScaleAspectFit
btn2.setTitle(
"图片按钮"
, forState: .Normal)
//偏移量,分别为上下左右
btn2.imageEdgeInsets = UIEdgeInsetsMake(0, -50, 0, 0)
btn2.titleEdgeInsets = UIEdgeInsetsMake(0, -80, 0, 5)
btn2.setTitleColor(UIColor.whiteColor(), forState: .Normal)
btn2.adjustsImageWhenHighlighted =
false
self.view.addSubview(btn2)
|
10.添加按钮的点击事件 。
按钮的触摸时间有以下类型 。
touchDown:单点触摸按下事件,点触屏幕 touchDownRepeat:多点触摸按下事件,点触计数大于1,按下第2、3或第4根手指的时候 touchDragInside:触摸在控件内拖动时 touchDragOutside:触摸在控件外拖动时 touchDragEnter:触摸从控件之外拖动到内部时 touchDragExit:触摸从控件内部拖动到外部时 touchUpInside:在控件之内触摸并抬起事件 touchUpOutside:在控件之外触摸抬起事件 touchCancel:触摸取消事件,即一次触摸因为放上太多手指而被取消,或者电话打断 。
1
2
3
4
5
6
7
8
9
10
11
|
button1.addTarget(self,action:#selector(methodName),
for
: .touchUpInside)
button1.addTarget(self, action:#selector(someMethod(button:)),
for
:.touchUpInside)
//上
func methodName() {
print(
"tapped"
)
}
//下
func someMethod(button:UIButton) {
print(
"你是谁啊,其实就是一个按钮"
)
}
|
二.自定义操作 。
1.UIButton的图片文字布局 。
创建一个按钮且其同时拥有文字和图片属性,会按照系统的默认样式(左图片,右文字)显示。但是有的时候,我们会遇到其他的设计需求,比如:左文字有图片、上文字下图片、上图片下文字等。这个时候就需要我们自定义按钮的显示样式来满足复杂多变的设计需求了。 我自定义了一个按钮的extension来满足以上的功能,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import Foundation
import UIKit
enum
ButtonLayout {
case
leftImage
case
rightImage
case
topImage
case
bottomImage
}
extension UIButton {
func setLayoutType(type: ButtonLayout){
let image: UIImage? = self.imageView?.image
switch
type {
case
.leftImage:
print(
"系统默认的方式"
)
case
.rightImage:
self.imageEdgeInsets = UIEdgeInsets(top:0, left: (self.titleLabel?.frame.size.width)!, bottom: 0, right:-(self.titleLabel?.frame.size.width)!)
self.titleEdgeInsets = UIEdgeInsets(top: 0, left: -(image?.size.width)!, bottom: 0, right: (image?.size.width)!)
case
.topImage:
self.imageEdgeInsets = UIEdgeInsets(top:-(self.titleLabel?.frame.size.height)!, left: 0, bottom: 0, right:-((self.titleLabel?.frame.size.width)!))
//图片距离右边框距离减少图片的宽度,距离上m边距的距离减少文字的高度
self.titleEdgeInsets = UIEdgeInsets(top: ((image?.size.height)!), left: -((image?.size.width)!), bottom: 0, right:0)
//文字距离上边框的距离增加imageView的高度,距离左边框减少imageView的宽度,距离下边框和右边框距离不变
default
:
self.imageEdgeInsets = UIEdgeInsets(top: (self.titleLabel?.frame.size.height)!, left:0, bottom: 0, right:-((self.titleLabel?.frame.size.width)!))
//图片距离上边距增加文字的高度 距离右边距减少文字的宽度
self.titleEdgeInsets = UIEdgeInsets(top: -(image?.size.height)!, left: -(image?.size.width)!, bottom: 0, right: 0)
}
}
}
|
以上就是Swift UIButton使用教程的详细内容,更多关于Swift UIButton的资料请关注我其它相关文章! 。
原文链接:https://juejin.im/post/6867394035363872781?utm_source=tuicool&utm_medium=referral 。
最后此篇关于Swift UIButton使用教程的文章就讲到这里了,如果你想了解更多关于Swift UIButton使用教程的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在做一个关于代码学院的教程,我在这里收到一个错误,说“看起来你的函数没有返回‘唉,你没有资格获得信用卡。资本主义就是这样残酷。’”当收入参数为 75 时。”但是该字符串在控制台中返回(由于某种原因
我正在阅读 Go 的官方教程,但很难理解 Channel 和 Buffered Channels 之间的区别。教程的链接是 https://tour.golang.org/concurrency/2和
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 9年前关闭。 Improve this que
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
作为 iOS 新手,有大量书籍可以满足学习基础知识的需求。现在,我想转向一些高级阅读,例如 OAuth 和 SQLite 以及动态 API 派生的 TableView 等。您可以推荐任何资源吗? 最佳
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 8 年前。 Improve
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 8 年前。
前言 很多同学都知道,我们常见的CTF赛事除了解题赛之外,还有一种赛制叫AWD赛制。在这种赛制下,我们战队会拿到一个或多个服务器。服务器的连接方式通常是SSH链接,并且可能一个战队可能会同时有
Memcached是一个自由开源的,高性能,分布式内存键值对缓存系统 Memcached 是一种基于内存的key-value存储,用来存储小块的任意数据(字符串、对象),这些数据可以是数据库调用、A
Perl 又名实用报表提取语言, 是 Practical Extraction and Report Language 的缩写 Perl 是由 拉里·沃尔(Larry Wall)于19
WSDL 是 Web Services Description Language 的缩写,翻译成中文就是网络服务描述语言 WSDL 是一门基于 XML 的语言,用于描述 Web Services 以
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
我正在寻找解释在 WPF 中创建自定义用户控件的教程。 我想要一个控件,它结合了一个文本 block 、一个文本框和一个启动通用文件打开对话框的按钮。我已经完成了布局,一切都连接好了。它有效,但它是三
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我接近 fourth page of the Django tutorial 的开始看着vote查看,最后是这样的: # Always return an HttpResponseRedirect a
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
是否有任何好的 Qt QSS 教程,或者在某个地方我可以看到样式小部件的示例?如果某处可用,我想要一些完整的引用。除了有关如何设置按钮或某些选项卡样式的小教程外,我找不到任何其他内容。 最佳答案 Qt
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我是一名优秀的程序员,十分优秀!