码迷,mamicode.com
首页 >  
搜索关键字:viewcontroller    ( 2658个结果
swift 实践- 14 -- UIScrollView
import UIKit class ViewController: UIViewController ,UIScrollViewDelegate{ override func viewDidLoad() { super.viewDidLoad() let scrollView = UIScroll ...
分类:编程语言   时间:2017-06-12 11:46:49    阅读次数:268
swift 实践- 11 -- UISlider
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let slider = UISlider.init(frame: CGRect.init( ...
分类:编程语言   时间:2017-06-09 19:26:38    阅读次数:167
swift 实践- 04 -- UIButton
import UIKit class ViewController: UIViewController { // 按钮的创建 // UIButtonType.system: 前面不带图标, 默认文字为蓝色,有触摸时的高亮效果 // UIButtonType.custom: 定制按钮,前面不带图标, ...
分类:编程语言   时间:2017-06-09 15:27:40    阅读次数:232
swift 实践- 03 -- UILabel
class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() // 标签 let label: UILabel = UILabel(frame: CGRect(x: 100, y: ...
分类:编程语言   时间:2017-06-09 14:13:54    阅读次数:128
block 与delegate( weak/id)
下面我们来说说delegate为啥定义时要用weak修饰符,这个涉及到循环引用的问题。例如一个ViewController上通过强指针引用了一个tableview,tableview的datasource和delegate都必须是weak指针,因为viewController被他两指向,如果用str ...
分类:其他好文   时间:2017-06-07 23:15:44    阅读次数:160
【读书笔记】iOS-截屏功能的实现。
一。整个project文件。 二,代码 ViewController.m #import "ViewController.h" #import <QuartzCore/QuartzCore.h> @interface ViewController () @end @implementation Vi ...
分类:移动开发   时间:2017-06-06 22:07:46    阅读次数:175
李洪强iOS开发之FMDB线程安全的用法
// // ViewController.m // 04 - FMDB线程安全的用法 // // Created by 李洪强 on 2017/6/6. // Copyright © 2017年 李洪强. All rights reserved. // #import "ViewController ...
分类:移动开发   时间:2017-06-06 18:31:39    阅读次数:282
UIView加入手势 然后UITableView 加入进这个View 导致UITableView 的单元格点击事件无效
#import "ViewController.h" @interface ViewController ()<UITableViewDataSource,UITableViewDelegate,UIGestureRecognizerDelegate> @end @implementation Vi ...
分类:其他好文   时间:2017-06-01 10:38:47    阅读次数:211
collectionView 和 tableView的嵌套使用
#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
【 Beginning iOS 7 Development《精通iOS7开发》】05 Autorotation and Autosizing
一、旋转后相对位置不变 二、旋转后相对位置变化 2.1默认: 2.2调整后 三、小结 3.1 在APP级别设置支持哪些方向: 3.2 在viewController(xlib)级别设置支持哪些方向: #import "JAViewController.h" @interface JAViewCont ...
分类:移动开发   时间:2017-05-30 22:05:16    阅读次数:308
2658条   上一页 1 ... 18 19 20 21 22 ... 266 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!