iOS7中我们通过ViewController重载方法返回枚举值的方法来控制状态栏的隐藏和样式。setStatusBarHidden在iOS7中不起作用了。
需要在Info.plist配置文件中,增加键:UIViewControllerBasedStatusBarAppearance,并设置为YES;
然后,在UIViewController子类中实现以下两个方法:
- (B...
分类:
移动开发 时间:
2014-09-10 17:46:50
阅读次数:
192
@继续前面的内容,这一章,主要介绍自定义ViewController容器上视图VC的切换.先来看看系统给我们提供的容器控制器 UINavigationController和UITabBarController 都有一个NSArray类型的属性viewControllers,很明显,存储的就是需要切换的视图VC.同理,我们定义一个ContainerViewController,是UIViewCont...
分类:
移动开发 时间:
2014-09-07 23:52:06
阅读次数:
524
CollectViewController.h@interface CollectViewController : UIViewController@property(nonatomic,retain)NSMutableArray *dataSource;@property(nonatomic,re...
分类:
移动开发 时间:
2014-09-07 23:41:15
阅读次数:
344
1 //方法一: 2 for(UIViewController *controller in self.navigationController.viewControllers){ 3 4 if([controller isKindOfClass:[OverWorkRece...
分类:
移动开发 时间:
2014-09-05 22:21:32
阅读次数:
280
- (UIViewController*)viewController{ for (UIView* next = [self superview]; next; next = next.superview) { UIResponder* nextResponder = [next...
分类:
其他好文 时间:
2014-09-05 19:50:01
阅读次数:
160
在iOS5.1 和 之前的版本中, 我们通常利用 shouldAutorotateToInterfaceOrientation: 来单独控制某个UIViewController的旋屏方向支持,比如:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrien...
分类:
移动开发 时间:
2014-09-05 08:46:31
阅读次数:
234
//UIViewController(基类)//1.管理视图//2.分担AppDelegate的任务//3.实现模块的独立,提高复用性//4.桥梁//抽象工厂设计模式://提供一个抽象的基类(提供基本的功能),使用时使用具体的子类//比如UIView,UIViewController都是抽象的基类.//创建视图控制器对象RootViewController*..
分类:
其他好文 时间:
2014-09-05 03:21:20
阅读次数:
197
搞了一天,总有把swift豆瓣音乐开发完成。功能:某一频道列表所有频道列表,点击返回某一频道工程结构图代码如下:ViewController.swiftimportUIKit
importMediaPlayer
importQuartzCore
//文启领航bjflexedu.com
//qq:376610000
classViewController:UIViewController,UITabl..
分类:
编程语言 时间:
2014-09-04 10:39:09
阅读次数:
420
搞了一天,总有把swift豆瓣音乐开发完成。功能:某一频道列表所有频道列表,点击返回某一频道工程结构图代码如下:ViewController.swiftimportUIKit
importMediaPlayer
importQuartzCore
//文启领航bjflexedu.com
//qq:376610000
classViewController:UIViewController,UITabl..
分类:
编程语言 时间:
2014-09-04 10:38:09
阅读次数:
308
MainViewController.h#import<UIKit/UIKit.h>
@interfaceMainViewController:UIViewController<UIScrollViewAccessibilityDelegate>
@endMainViewController.m#import"MainViewController.h"
@interfaceMainViewController()
@end
@implementationMainViewControll..
分类:
其他好文 时间:
2014-09-04 10:37:59
阅读次数:
218