// 实现tableView单选 import UIKit class ViewController: UIViewController { var tableView: UITableView! override func viewDidLoad() { super.viewDidLoad() t ...
分类:
编程语言 时间:
2017-03-17 14:41:37
阅读次数:
264
正常继承自UIView新建的view是不包含xib的自己新建的 xib 关联 view 以后,在 xib 上拖拽 tableView等包含有 delegate 的控件时,当和UIViewController一样直接拖拽代理的时候会出现-[ViewController numberOfComponen ...
分类:
其他好文 时间:
2017-03-14 17:23:15
阅读次数:
218
// XMGLoginViewController.h // 小码哥通讯录 #import @interface XMGLoginViewController : UIViewController @end // // XMGLoginViewController.m // 小码哥通讯录 #impo... ...
分类:
其他好文 时间:
2017-03-13 15:08:18
阅读次数:
277
// ViewController.h // 03-综合使用 #import @interface ViewController : UIViewController @end // ViewController.m // 03-综合使用 #import "ViewController.h" #im... ...
分类:
其他好文 时间:
2017-03-06 14:36:05
阅读次数:
200
// // XMGChatingViewController.h // 07-聊天布局 #import @interface XMGChatingViewController : UIViewController @end // // XMGChatingViewController.m // 07... ...
分类:
其他好文 时间:
2017-03-06 13:32:09
阅读次数:
166
在iOS 5.0及以后,iOS为UIViewController类添加了新的属性和方法: 1 2 3 4 5 6 @property(nonatomic,readonly) NSArray *childViewControllers - (void)addChildViewController:(U ...
分类:
移动开发 时间:
2017-03-01 18:07:00
阅读次数:
190
一、前言在之前的一片文章中已经介绍了 从iOS的第一个应用中能学习到哪些知识点 在那篇文章中主要介绍了一个iOS程序的启动过程和应用的几大对象,以及应用的生命周期,同时也介绍了应用中的控制器知识点,介...
分类:
移动开发 时间:
2017-02-14 10:48:45
阅读次数:
286
// 近距离传感器的实现封装在UIKit中 // 需要使用真机测试 import UIKit enum YSSession:Int { case audio = 1 // 音频 case video = 2 // 视频 } class ViewController: UIViewController... ...
分类:
其他好文 时间:
2017-02-12 19:06:47
阅读次数:
171
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } override func touchesBegan(touches: Set, wit... ...
分类:
编程语言 时间:
2017-02-07 10:54:17
阅读次数:
216
对于在UIView上,是不能跳转的,所以我们通常要借助UIViewController,但经常会出现UIViewController没被加载的情况。这时就会报这个错。 解决方法: viewCon = (UIApplication.shared.keyWindow?.rootViewControlle ...