Swift - 生成各种控件的工厂类(包含标签,按钮,输入框等)
在iOS开发中,页面里有时会大量的用到一些控件,如果要一个个单独创建再设置样式的话就显得很麻烦。我们可以创建一个生成各种控件的工厂类,这样在需要的时候调用下就可以了。
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
import UIKit class ViewFactory { /** * 控件默认尺寸 */ class func getDefaultFrame() -> CGRect { let defaultFrame = CGRectMake (0, 0, 100, 30) return defaultFrame } class func createControl(type: String , title:[ String ], action: Selector , sender: AnyObject ) -> UIView { switch (type) { case "label" : return ViewFactory .createLabel(title[0]) case "button" : return ViewFactory .createButton(title[0], action: action, sender: sender as UIViewController ) case "text" : return ViewFactory .createTextField(title[0], action: action, sender: sender as UITextFieldDelegate ) case "segment" : return ViewFactory .createSegment(title, action: action, sender: sender as UIViewController ) default : return ViewFactory .createLabel(title[0]) } } /** * 创建按钮控件 */ class func createButton(title: String , action: Selector , sender: UIViewController )-> UIButton { var button = UIButton (frame: ViewFactory .getDefaultFrame()) button.backgroundColor = UIColor .orangeColor() button.setTitle(title, forState:. Normal ) button.titleLabel!.textColor = UIColor .whiteColor() button.titleLabel!.font = UIFont .systemFontOfSize(14) button.addTarget(sender, action:action, forControlEvents: UIControlEvents . TouchUpInside ) return button } /** * 创建文本输入框控件 */ class func createTextField(value: String , action: Selector , sender: UITextFieldDelegate ) -> UITextField { var textField = UITextField (frame: ViewFactory .getDefaultFrame()) textField.backgroundColor = UIColor .clearColor() textField.textColor = UIColor .blackColor() textField.text = value textField.borderStyle = UITextBorderStyle . RoundedRect textField.adjustsFontSizeToFitWidth = true textField.delegate = sender return textField } /** * 创建分段单选控件 */ class func createSegment(items: [ String ], action: Selector , sender: UIViewController ) -> UISegmentedControl { var segment = UISegmentedControl (items:items) segment.frame = ViewFactory .getDefaultFrame() //segment.segmentedControlStyle = UISegmentedControlStyle.Bordered segment.momentary = false segment.addTarget(sender, action:action, forControlEvents: UIControlEvents . ValueChanged ) return segment } /** * 创建文本标签控件 */ class func createLabel(title: String ) -> UILabel { let label = UILabel () label.textColor = UIColor .blackColor(); label.backgroundColor = UIColor .whiteColor(); label.text = title; label.frame = ViewFactory .getDefaultFrame() label.font = UIFont (name: "HelveticaNeue-Bold" , size: 16) return label } } |
工厂类的使用:
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
import UIKit class ViewController : UIViewController , UITextFieldDelegate { var txtNum: UITextField ! var segDimension: UISegmentedControl ! var btn: UIButton ! override func viewDidLoad() { super .viewDidLoad() // Do any additional setup after loading the view, typically from a nib. setupControls() } func setupControls() { //创建文本标签 let labelNum = ViewFactory .createLabel( "阈值:" ) labelNum.frame = CGRect (x: 20, y: 100, width: 60, height: 30) self .view.addSubview(labelNum) let labelDm = ViewFactory .createLabel( "维度:" ) labelDm.frame = CGRect (x: 20, y: 200, width: 60, height: 30) self .view.addSubview(labelDm) //创建文本输入框 txtNum = ViewFactory .createTextField( "" , action: Selector ( "numChanged" ), sender: self ) txtNum.frame = CGRect (x:80,y:100,width:200,height:30) txtNum.returnKeyType = UIReturnKeyType . Done self .view.addSubview(txtNum) //创建分段单选控件 segDimension = ViewFactory .createSegment([ "3x3" , "4x4" , "5x5" ], action: "dimensionChanged:" , sender: self ) segDimension.frame = CGRect (x:80,y: 200,width: 200,height: 30) self .view.addSubview(segDimension) segDimension.selectedSegmentIndex = 1 //创建按钮控件 btn = ViewFactory .createButton( "确定" , action: nil , sender: self ) btn.frame.origin = CGPointMake (80, 300) self .view.addSubview(btn) } override func didReceiveMemoryWarning() { super .didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } } |
Swift - 生成各种控件的工厂类(包含标签,按钮,输入框等)的更多相关文章
- 背水一战 Windows 10 (42) - 控件(导航类): Frame 动画
[源码下载] 背水一战 Windows 10 (42) - 控件(导航类): Frame 动画 作者:webabcd 介绍背水一战 Windows 10 之 控件(导航类) Frame 动画 示例An ...
- 背水一战 Windows 10 (60) - 控件(媒体类): Pointer 涂鸦板, InkCanvas 涂鸦板
[源码下载] 背水一战 Windows 10 (60) - 控件(媒体类): Pointer 涂鸦板, InkCanvas 涂鸦板 作者:webabcd 介绍背水一战 Windows 10 之 控件( ...
- 背水一战 Windows 10 (34) - 控件(进度类): RangeBase, Slider, ProgressBar, ProgressRing
[源码下载] 背水一战 Windows 10 (34) - 控件(进度类): RangeBase, Slider, ProgressBar, ProgressRing 作者:webabcd 介绍背水一 ...
- 背水一战 Windows 10 (33) - 控件(选择类): ListBox, RadioButton, CheckBox, ToggleSwitch
[源码下载] 背水一战 Windows 10 (33) - 控件(选择类): ListBox, RadioButton, CheckBox, ToggleSwitch 作者:webabcd 介绍背水一 ...
- 背水一战 Windows 10 (32) - 控件(选择类): Selector, ComboBox
[源码下载] 背水一战 Windows 10 (32) - 控件(选择类): Selector, ComboBox 作者:webabcd 介绍背水一战 Windows 10 之 控件(选择类) Sel ...
- 背水一战 Windows 10 (30) - 控件(文本类): AutoSuggestBox
[源码下载] 背水一战 Windows 10 (30) - 控件(文本类): AutoSuggestBox 作者:webabcd 介绍背水一战 Windows 10 之 控件(文本类) AutoSug ...
- 背水一战 Windows 10 (29) - 控件(文本类): RichTextBlock, RichTextBlockOverflow, RichEditBox
[源码下载] 背水一战 Windows 10 (29) - 控件(文本类): RichTextBlock, RichTextBlockOverflow, RichEditBox 作者:webabcd ...
- 背水一战 Windows 10 (28) - 控件(文本类): TextBox, PasswordBox
[源码下载] 背水一战 Windows 10 (28) - 控件(文本类): TextBox, PasswordBox 作者:webabcd 介绍背水一战 Windows 10 之 控件(文本类) T ...
- 背水一战 Windows 10 (27) - 控件(文本类): TextBlock
[源码下载] 背水一战 Windows 10 (27) - 控件(文本类): TextBlock 作者:webabcd 介绍背水一战 Windows 10 之 控件(文本类) TextBlock 示例 ...
随机推荐
- php下载远程图片方法总结(curl手动解析header)curl跳转问题解决
常用方法一般有:. file_get_contents file_put_contents readfile($file) //效率很高. 一般代码: /** * 抓取远程图片 * * @param ...
- android学习--视图列表(ListView和ListActivity)
说明: 视图列表(ListView和ListActivity)与AutoComplete.Spinner类似,它们都须要一个供显示的列表项,能够须要借助于内容Adapter提供显示列表项 创建List ...
- CMake使用之一
概述 CMake是一个比make更高级的编译配置工具,它可以根据不同平台.不同的编译器,生成相应的Makefile或者vcproj项目. 通过编写CMakeLists.txt,可以控制生成的Makef ...
- javascript每日一练(七)——事件二:键盘事件
一.键盘事件 onkeydown触发, keyCode键盘编码 ctrlKey altKey shiftKey 键盘控制div移动 <!doctype html> <html> ...
- WPF4多点触摸事件
原文 WPF4多点触摸事件 UIElement在WPF4下添加了很多支持多点触摸的事件,通过它们可以在硬件支持的情况下处理多点触摸,以下通过代码来说明通过处理这些事件,我们可以做些什么: 一.触摸相关 ...
- 基于visual Studio2013解决算法导论之008快速排序算法
题目 快速排序 解决代码及点评 #include <stdio.h> #include <stdlib.h> #include <malloc.h> #in ...
- OGR – Merging Multiple SHP files
So I have 25 shapefiles with data for 25 counties, and I want to merge them all into one shapefile. ...
- CLR执行模型 流程总结(图)
如有错误,还望指出:
- linux: 鸟哥的私房菜
鸟哥的私房菜 http://vbird.dic.ksu.edu.tw/linux_basic/0320bash.php
- 软件下载网(包括MAC软件大全)
http://www.ddooo.com/ MAC软件大全: http://www.ddooo.com/apple/15_5_1.htm