码迷,mamicode.com
首页 >  
搜索关键字:viewcontroller 容器转场    ( 2658个结果
iOS UI基础 九宫格算法
案例分析:分析:代码案例实现://// ViewController.m// 01-九宫格算法//// Created by FlyLee on 14-9-12.// Copyright (c) 2014年 FLYLEE.CN. All rights reserved.//#import "View...
分类:移动开发   时间:2014-09-13 11:56:45    阅读次数:391
UITabBarController使用详解
UITabBarController是IOS中很常用的一个viewController,例如系统的闹钟程序,ipod程序等。UITabBarController通常作为整个程序的rootViewController,而且不能添加到别的container viewController中。 首先我们看....
分类:其他好文   时间:2014-09-13 00:46:44    阅读次数:325
ios socket(基础demo)
http://blog.sina.com.cn/s/blog_7a2f0a830101ecv4.htmlclinetSocket 1、viewcontroller.h@interface ViewController : UIViewControllerGCDAsyncSocketDelegate,...
分类:移动开发   时间:2014-09-11 18:46:52    阅读次数:278
今日收获--关于编程思想的小结(2014-09-11 16:46:20)
今天的主要任务是添加5个模块的打印模板,如果是按照往常的思维,我可能会直接建立5个ViewController分别对应5个打印模板,然后在分别对其xib文件进行修改来满足需求。但是,今天我换了一种思路,首先,对于复杂的画面,如果手动编程进行添加会非常的消耗时间和精力,而且不利于直观调整UI详细界面的...
分类:其他好文   时间:2014-09-11 18:44:32    阅读次数:142
iOS7.0后隐藏状态栏
iOS7中我们通过ViewController重载方法返回枚举值的方法来控制状态栏的隐藏和样式。setStatusBarHidden在iOS7中不起作用了。 需要在Info.plist配置文件中,增加键:UIViewControllerBasedStatusBarAppearance,并设置为YES; 然后,在UIViewController子类中实现以下两个方法: - (B...
分类:移动开发   时间:2014-09-10 17:46:50    阅读次数:192
UIStatusBarStyle PreferredStatusBarStyle does not work on iOS 7
Q:In my iPhone application built with Xcode 5 for iOS 7 I set UIViewControllerBasedStatusBarAppearance=YES in info.plist, and in my ViewController I h...
分类:移动开发   时间:2014-09-09 17:55:59    阅读次数:209
ios7.0结合storyborad实现页面跳转的总结
折腾了一整天,本文总结一下ios7.0页面跳转有关的内容storyboard的潜规则我接触ios很晚,环境已经是xcode5+ios7,所以对以前的IOS开发模式并不了解。在网上查阅了很多资料,发现以前的代码,很多都需要自己coding来创建ViewController,比如:Objc代码WTwoV...
分类:移动开发   时间:2014-09-09 12:12:28    阅读次数:269
独立UITabelView的创建及数据处理
新建一个UITableView的子类,在其中实现UITableView创建的代理步骤,唯一不同是需要建一个属性数组,用来传递数据然后再ViewController初始化并设置正确的代理对象此方法适用同一个界面多个UITableView使用,好管理数据
分类:其他好文   时间:2014-09-09 10:48:58    阅读次数:220
iOS7新特性 ViewController转场切换(三) 自定义视图控制器容器的切换---非交互式
@继续前面的内容,这一章,主要介绍自定义ViewController容器上视图VC的切换.先来看看系统给我们提供的容器控制器 UINavigationController和UITabBarController 都有一个NSArray类型的属性viewControllers,很明显,存储的就是需要切换的视图VC.同理,我们定义一个ContainerViewController,是UIViewCont...
分类:移动开发   时间:2014-09-07 23:52:06    阅读次数:524
根据View找控制器
- (UIViewController*)viewController{ for (UIView* next = [self superview]; next; next = next.superview) { UIResponder* nextResponder = [next...
分类:其他好文   时间:2014-09-05 19:50:01    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!