一、最普通的视图控制器UIViewContoller 一个普通的视图控制器一般只有模态跳转的功能(ipad我不了解除外,这里只说iPhone),这个方法是所有视图控制器对象都可以用的,而实现这种功能,有两种方法。 1、通过方法- (void)presentViewController:(UIVi.....
分类:
其他好文 时间:
2015-06-12 10:00:31
阅读次数:
124
1.导航类型UINavigationController 适用于父子页面的跳转UITabBarController 适用于平级页面的跳转2.presentViewController /dismissViewControllerAnimated和pushViewController / popVie...
分类:
移动开发 时间:
2015-06-11 18:55:43
阅读次数:
132
模态视图切换下一view的方法:【self presentViewController: animated: completion:】 第一个参数传入要切换的那个view,第二个参数表上是否使用动画,第三个参数是个代码块,一般设置为nil; 模态视图返回上一个view的方法:[self dism.....
分类:
其他好文 时间:
2015-06-08 19:26:26
阅读次数:
134
最近项目有需求, 需要模态初一个半透明的视图, 好多人都碰到这个问题吧, 在目标视图中设置背景颜色然后发现模态动作结束后变成了黑色或者不是半透明的颜色。
所以今天来告诉大家解决方案
- (IBAction)Avtion1:(id)sender {
TestViewController * testVC = [TestViewController new];
self.d...
分类:
移动开发 时间:
2015-05-26 16:07:15
阅读次数:
140
模式对话窗体跳转1、//模式对话窗体跳转- (void)presentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))complet.....
分类:
其他好文 时间:
2015-05-24 00:11:00
阅读次数:
193
目前Apple推荐的场景转换的方法有以下几个: 一般的跳转方法: presentViewController Discussion In a horizontally compact environment, the presented view is always full screen. In ...
分类:
移动开发 时间:
2015-05-10 12:51:56
阅读次数:
284
-dismissViewControllerAnimated:completion:此方法用于dismiss 那些由UIViewController 的-presentViewController:animated:completion: 方法 呈现出来的UIViewController(这种情况,...
分类:
移动开发 时间:
2015-04-29 16:47:21
阅读次数:
470
下面是我找到的最靠谱的答案了。尝试后问题果然解决了。分享给大家。http://blog.csdn.net/sbvfhp/article/details/19826221当我想从一个VC跳转到另一个VC的时候,一般会用- (void)presentViewController:(UIViewContr...
1、[self.view addSubView:view];和[self.window addSubView:view];需要注意,此方法只是把页面(view)加在当前页面(view)上,控制器(viewController)还是原来那个控制器。此时再用[self.navigationColler ...
分类:
其他好文 时间:
2015-04-10 13:10:39
阅读次数:
131
[showView setModalTransitionStyle:UIModalTransitionStyleCoverVertical]; [self presentViewController:showView animated:YES completion:nil];-(void)btnP....
分类:
其他好文 时间:
2015-03-31 14:37:23
阅读次数:
97