//返回到上一个视图-(UIViewController*)popViewControllerAnimated:(BOOL)animated;//返回到指定的视图-(NSArray*)popToViewController:(UIViewController*)viewControlleranimated:(BOOL)animated;//返回到第一页-(NSArray*)popToRootViewControllerAnimated:(BOOL)animated;
分类:
其他好文 时间:
2014-05-15 00:54:32
阅读次数:
233
问题提出,ios6和ios7中视图控制器的创建中的view的是会自动排版的,就是你自定义其中的view,也改变不了其尺寸,ios6自定义的尺寸是{{0,
20}, {320, 460}},ios7自定义的尺寸是{{0, 0}, {320, 480}}这就为兼容性造成很大的困扰?//解决方案,苹果这么...
分类:
移动开发 时间:
2014-05-12 00:00:13
阅读次数:
496
转自:http://blog.sina.com.cn/s/blog_60b45f230100yiaf.html用此方法传值可以替代委托了。具体例子:MainView.h#import
@interface MainView : UIViewController{ IBOutlet UIButt...
分类:
移动开发 时间:
2014-05-10 07:43:17
阅读次数:
403
在iOS中ViewController的基类是UIViewController;Mac中ViewController的基类是NSViewController。Mac中ViewController父类是NSViewController,子类很少,笔者就查到了NSPageController。如果应用中...
分类:
移动开发 时间:
2014-05-09 18:43:51
阅读次数:
510
// 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
//要实现UIWebViewDelegate代理@interface
TestViewController : UIViewController{ UIWebView *protWebView;}@property
(retain, nonatomic) IBOutletUIWebView *pr....
分类:
移动开发 时间:
2014-05-01 15:13:29
阅读次数:
420
iOS开发中访问相册摄像像头
源码下载地址http://download.csdn.net/detail/jingjingxujiayou/7270479
在AppDelegate.m文件中
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launch...
分类:
移动开发 时间:
2014-04-30 22:27:38
阅读次数:
497
在ios6以后,ios系统改变了屏幕旋转的方法,如果要设置屏幕旋转的方法,需要在rootvc里面进行编写,例如
UIViewController *viewCtrl = [[UIViewController alloc] init];
UINavigationController *navCtrl = [[UINavigationController alloc] initWithRoot...
分类:
其他好文 时间:
2014-04-30 22:24:39
阅读次数:
254
我们一般切换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