码迷,mamicode.com
首页 >  
搜索关键字:uiviewcontroller    ( 1229个结果
UI pop返回的三个方法
//返回到上一个视图-(UIViewController*)popViewControllerAnimated:(BOOL)animated;//返回到指定的视图-(NSArray*)popToViewController:(UIViewController*)viewControlleranimated:(BOOL)animated;//返回到第一页-(NSArray*)popToRootViewControllerAnimated:(BOOL)animated;
分类:其他好文   时间:2014-05-15 00:54:32    阅读次数:233
UIViewController中的view自动排版(ios6和ios7)
问题提出,ios6和ios7中视图控制器的创建中的view的是会自动排版的,就是你自定义其中的view,也改变不了其尺寸,ios6自定义的尺寸是{{0, 20}, {320, 460}},ios7自定义的尺寸是{{0, 0}, {320, 480}}这就为兼容性造成很大的困扰?//解决方案,苹果这么...
分类:移动开发   时间:2014-05-12 00:00:13    阅读次数:496
iOS中使用block传值
转自:http://blog.sina.com.cn/s/blog_60b45f230100yiaf.html用此方法传值可以替代委托了。具体例子:MainView.h#import @interface MainView : UIViewController{ IBOutlet UIButt...
分类:移动开发   时间:2014-05-10 07:43:17    阅读次数:403
对比学习UIKit和AppKit -- ViewController
在iOS中ViewController的基类是UIViewController;Mac中ViewController的基类是NSViewController。Mac中ViewController父类是NSViewController,子类很少,笔者就查到了NSPageController。如果应用中...
分类:移动开发   时间:2014-05-09 18:43:51    阅读次数:510
iOS 引导页
// GuideViewController.h// Created by l.h on 14-5-6.#import @interface GuideViewController : UIViewController@end //// GuideViewController.m// Cr...
分类:移动开发   时间:2014-05-08 18:17:49    阅读次数:640
IOS-简单WebView的使用
//要实现UIWebViewDelegate代理@interface TestViewController : UIViewController{ UIWebView *protWebView;}@property (retain, nonatomic) IBOutletUIWebView *pr....
分类:移动开发   时间:2014-05-01 15:13:29    阅读次数:420
iOS开发中访问相册摄像像头
iOS开发中访问相册摄像像头 源码下载地址http://download.csdn.net/detail/jingjingxujiayou/7270479 在AppDelegate.m文件中 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launch...
分类:移动开发   时间:2014-04-30 22:27:38    阅读次数:497
当rootViewController为tabbarController时,控制屏幕旋转的方法
在ios6以后,ios系统改变了屏幕旋转的方法,如果要设置屏幕旋转的方法,需要在rootvc里面进行编写,例如 UIViewController *viewCtrl = [[UIViewController alloc] init]; UINavigationController *navCtrl = [[UINavigationController alloc] initWithRoot...
分类:其他好文   时间:2014-04-30 22:24:39    阅读次数:254
降低UIViewController切换的耦合
我们一般切换UIViewController的时候用的是如下代码 #import "UIViewControllerDemo.h" UIViewControllerDemo *vc = [UIViewControllerDemo alloc] initWithNibName:nil bundle:nil] autorelease]; [self.navigationController pushViewController:vc animated:YES];...
分类:其他好文   时间:2014-04-27 21:21:00    阅读次数:294
1229条   上一页 1 ... 121 122 123
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!