码迷,mamicode.com
首页 >  
搜索关键字:uiviewcontroller    ( 1229个结果
Swift开发String+NSString详细使用
// // ViewController.swift // Swift+String import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() //v ...
分类:编程语言   时间:2017-08-29 18:02:59    阅读次数:324
iOS中的成员变量,实例变量,属性变量
在ios第一版中: 我们为输出口同时声明了属性和底层实例变量,那时,属性是oc语言的一个新的机制,并且要求你必须声明与之对应的实例变量,例如: 注意:(这个是以前的用法) @interface MyViewController :UIViewController { UIButton *myButt ...
分类:移动开发   时间:2017-08-22 16:05:08    阅读次数:238
Swift开发教程--设置UIViewController的背景透明
非常easy的一句代码 self.view.backgroundColor = UIColor.clearColor() 由此联想开来,非常多的控件想设置为背景透明都能够用UIColor.clearColor() 非常easy的一句代码 self.view.backgroundColor = UIC ...
分类:编程语言   时间:2017-08-12 10:19:05    阅读次数:180
swift基础语法之控件使用02
//第一个控制器:显示基础控件 import UIKit class ViewController: UIViewController { var label: UILabel = UILabel() var button: UIButton = UIButton() var imageView: ...
分类:编程语言   时间:2017-08-05 10:58:58    阅读次数:207
获取当前AppDelegate 正在显示的UIViewController
UIWindow+PazLabs.h (header file) #import <UIKit/UIKit.h> @interface UIWindow (PazLabs) - (UIViewController *) visibleViewController; @end UIWindow+Paz ...
分类:移动开发   时间:2017-08-01 14:19:17    阅读次数:263
block传值以及利用block封装一个网络请求类
1.block在俩个UIViewController间传值 近期刚学了几招block 的高级使用方法,事实上就是利用block语法在俩个UIViewController之间传值,在这里分享给刚開始学习的人,同一时候也方便我自己理解。我们知道UINavigationController类管理UIVie ...
分类:其他好文   时间:2017-07-28 14:44:37    阅读次数:216
swift -NavigationController,代理传值
// // ViewController.swift // NavigationController // import UIKit import Foundation class ViewController: UIViewController,FontSizeChangDelegate { va ...
分类:编程语言   时间:2017-07-28 14:07:41    阅读次数:172
Block系列2:Block内存管理
ViewController.h #import <UIKit/UIKit.h> @interface ViewController : UIViewController { UIImage *_image; NSInteger _index; } @endViewController.m #imp ...
分类:其他好文   时间:2017-07-25 16:00:52    阅读次数:127
loaded the "XXXView" nib but the view outlet was not set 解决方案
'-[UIViewController _loadViewFromNibNamed:bundle:] loaded the "XXXView" nib but the view outlet was not set.' 查书才知道,没有做nib文件到xxxViewControler程序的关联,特此记 ...
分类:其他好文   时间:2017-07-25 12:32:13    阅读次数:163
1229条   上一页 1 ... 7 8 9 10 11 ... 123 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!