码迷,mamicode.com
首页 >  
搜索关键字:uiviewcontroller    ( 1229个结果
Swift - 实现tableView单选系统样式
// 实现tableView单选 import UIKit class ViewController: UIViewController { var tableView: UITableView! override func viewDidLoad() { super.viewDidLoad() t ...
分类:编程语言   时间:2017-03-17 14:41:37    阅读次数:264
在view里面通过xib拖拽delegate的方法 numberOfComponentsInPickerView: : unrecognized selector sent to instance 0x7f9eae60a1c0
正常继承自UIView新建的view是不包含xib的自己新建的 xib 关联 view 以后,在 xib 上拖拽 tableView等包含有 delegate 的控件时,当和UIViewController一样直接拖拽代理的时候会出现-[ViewController numberOfComponen ...
分类:其他好文   时间:2017-03-14 17:23:15    阅读次数:218
03-0612-私人通讯录通讯录(代理解耦)
// XMGLoginViewController.h // 小码哥通讯录 #import @interface XMGLoginViewController : UIViewController @end // // XMGLoginViewController.m // 小码哥通讯录 #impo... ...
分类:其他好文   时间:2017-03-13 15:08:18    阅读次数:277
020606-08-按钮内部结构
// ViewController.h // 03-综合使用 #import @interface ViewController : UIViewController @end // ViewController.m // 03-综合使用 #import "ViewController.h" #im... ...
分类:其他好文   时间:2017-03-06 14:36:05    阅读次数:200
020606-04-聊天布局-键盘处理
// // XMGChatingViewController.h // 07-聊天布局 #import @interface XMGChatingViewController : UIViewController @end // // XMGChatingViewController.m // 07... ...
分类:其他好文   时间:2017-03-06 13:32:09    阅读次数:166
IOS willMoveToParentViewController和didMoveToParentViewController的使用
在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狂暴之路---视图控制器(UIViewController)使用详解
一、前言在之前的一片文章中已经介绍了 从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
Swift - 警告提示框(UIAlertController)的用法
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() } override func touchesBegan(touches: Set, wit... ...
分类:编程语言   时间:2017-02-07 10:54:17    阅读次数:216
Warning: Attempt to present <UIAlertController: 0x7fb6ab704950> on <UIViewController: 0x7fb6ab51c810> whose view is not in the window hierarchy!
对于在UIView上,是不能跳转的,所以我们通常要借助UIViewController,但经常会出现UIViewController没被加载的情况。这时就会报这个错。 解决方法: viewCon = (UIApplication.shared.keyWindow?.rootViewControlle ...
分类:Windows程序   时间:2017-01-14 11:24:14    阅读次数:272
1229条   上一页 1 ... 12 13 14 15 16 ... 123 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!