利用分类,NSString,增加一个方法。 #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> @interface NSString (Height) + (CGSize)getRect:(NSString *)textStr and ...
分类:
移动开发 时间:
2017-06-12 21:07:44
阅读次数:
246
import UIKit class ViewController: UIViewController { var stepper: UIStepper! var label: UILabel! override func viewDidLoad() { super.viewDidLoad() // ...
分类:
编程语言 时间:
2017-06-12 11:53:55
阅读次数:
157
import UIKit class ViewController: UIViewController ,UIScrollViewDelegate{ override func viewDidLoad() { super.viewDidLoad() let scrollView = UIScroll ...
分类:
编程语言 时间:
2017-06-12 11:46:49
阅读次数:
268
引言: 一个商业项目的需要,又因为时间紧迫的关系,准备购买一套简洁,易用,可定制化强的UI,经过对国内外多家UI产品进行了对比, 包括:FineUI, EasyUI, EXT.NET, EXTJS, jQueryUI, jQuery MiniUI, ligerUI, kendo-ui, uikit, ...
分类:
其他好文 时间:
2017-06-10 12:34:23
阅读次数:
244
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let slider = UISlider.init(frame: CGRect.init( ...
分类:
编程语言 时间:
2017-06-09 19:26:38
阅读次数:
167
import UIKit class ViewController: UIViewController { // 按钮的创建 // UIButtonType.system: 前面不带图标, 默认文字为蓝色,有触摸时的高亮效果 // UIButtonType.custom: 定制按钮,前面不带图标, ...
分类:
编程语言 时间:
2017-06-09 15:27:40
阅读次数:
232
.h文件 #import <UIKit/UIKit.h> @interface UILabel (ContentSize) - (CGSize)contentSize; @end .m文件 #import "UILabel+ContentSize.h" @implementation UILabel ...
分类:
移动开发 时间:
2017-06-06 15:53:27
阅读次数:
206
import UIKit class ViewController3: UIViewController { override func viewDidLoad() { super.viewDidLoad() self.view.backgroundColor=UIColor.whiteColor( ...
分类:
编程语言 时间:
2017-06-05 11:33:46
阅读次数:
194
本话来介绍UIKit框架中的组件UITextField。 UItextField(文本框)和Label看起来看像,可是文本框是能够编辑的。在UI中使用文本框要注意。由于在模拟器上面输入文字是能够使用电脑键盘的。而在真机上。用户仅仅能使用虚拟键盘。所以要注意。另外文本框中的文字大小、颜色等等也是能够设 ...
分类:
移动开发 时间:
2017-06-03 11:16:35
阅读次数:
156