import UIKit class ViewController: UIViewController ,UIScrollViewDelegate{ override func viewDidLoad() { super.viewDidLoad() let scrollView = UIScroll ...
分类:
编程语言 时间:
2017-06-12 11:46:49
阅读次数:
268
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
class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() // 标签 let label: UILabel = UILabel(frame: CGRect(x: 100, y: ...
分类:
编程语言 时间:
2017-06-09 14:13:54
阅读次数:
128
下面我们来说说delegate为啥定义时要用weak修饰符,这个涉及到循环引用的问题。例如一个ViewController上通过强指针引用了一个tableview,tableview的datasource和delegate都必须是weak指针,因为viewController被他两指向,如果用str ...
分类:
其他好文 时间:
2017-06-07 23:15:44
阅读次数:
160
一。整个project文件。 二,代码 ViewController.m #import "ViewController.h" #import <QuartzCore/QuartzCore.h> @interface ViewController () @end @implementation Vi ...
分类:
移动开发 时间:
2017-06-06 22:07:46
阅读次数:
175
// // ViewController.m // 04 - FMDB线程安全的用法 // // Created by 李洪强 on 2017/6/6. // Copyright © 2017年 李洪强. All rights reserved. // #import "ViewController ...
分类:
移动开发 时间:
2017-06-06 18:31:39
阅读次数:
282
#import "ViewController.h" @interface ViewController ()<UITableViewDataSource,UITableViewDelegate,UIGestureRecognizerDelegate> @end @implementation Vi ...
分类:
其他好文 时间:
2017-06-01 10:38:47
阅读次数:
211
#import "ViewController.h" #define HEIGHT [UIScreen mainScreen].bounds.size.height #define WIDTH [UIScreen mainScreen].bounds.size.width @interface Vi ...
分类:
其他好文 时间:
2017-05-31 12:04:20
阅读次数:
212
一、旋转后相对位置不变 二、旋转后相对位置变化 2.1默认: 2.2调整后 三、小结 3.1 在APP级别设置支持哪些方向: 3.2 在viewController(xlib)级别设置支持哪些方向: #import "JAViewController.h" @interface JAViewCont ...
分类:
移动开发 时间:
2017-05-30 22:05:16
阅读次数:
308