...dismissviewcontrolleranimated 子控制器没有
发布网友
发布时间:2024-07-07 19:01
我来回答
共1个回答
热心网友
时间:2024-07-26 08:15
本文我们来分享在ios开发中如何通过自定义按钮并跳转到另外一个视图的学习实例,这种场景在ios开发中很常用。 刚学iOS不久,虽然视图切换能直接用stroryboard创建,拖根线就完事了!但不知道为嘛,还是感觉iOS开发中代码控制视图灵活方便。 不多说了,开始今天的笔记: 新建工程,不多说啦!我喜欢用Empty Application,创建完成后,新建两个UIViewController类,假设A和B吧!!哈哈 这儿将appDelegate中的代码就省了!!哈哈。相信能看到这儿的人,也懂得如何设置root视图了 我们要实现的是,从A点击一个按钮,弹出来B窗口,然后点击B窗口的一个按钮,返回到A窗口。 直接开始代码: A: - (void)viewDidLoad { [super viewDidLoad]; //设置视图背景颜色 self.view.backgroundColor = [UIColor groupTableViewBackgroundColor]; //添加弹出模态视图按钮 UIButton * button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; //设置按钮位置和大小 [button setFrame:CGRectMake(120, 220, 80, 40)]; //设置按钮文字及状态 [button setTitle:@"模态视图" forState:UIControlStateNormal]; //添加动作绑定 [button addTarget:self action:@selector(modelViewGO) forControlEvents:UIControlEventTouchUpInside]; //添加进视图 [self.view addSubview:button]; } -(void) modelViewGO { BViewController * modalView = [[BViewController alloc]init]; modalView.modalTransitionStyle = UIModalTransitionStyleCoverVertical; [self presentViewController:modalView animated:YES completion:nil]; // [modalView release]; } 然后在B视图中,添加返回按钮及相关代码: B: - (void)viewDidLoad { //和A视图差不多的东西,不解释啦!! [super viewDidLoad]; self.view.backgroundColor = [UIColor purpleColor]; UIButton * button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [button setFrame:CGRectMake(130, 50, 60, 20)]; [button setTitle:@"返回" forState:UIControlStateNormal]; [button addTarget:self action:@selector(back ) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:button]; } -(void)back { //下面这行代码作用就是将弹出的模态视图移除,第一个yes表示移除的时候有动画效果,第二参数是设置一个回调,当模态视图移除消失后,会回到这里,可以在这里随便写句话打个断点,试一下就知道确实会回调到这个方法 // [self dismissViewControllerAnimated:YES completion:nil]; 或带有回调的如下方法 [self dismissViewControllerAnimated:YES completion:^{ NSLog(@"back");//这里打个断点,点击按钮模态视图移除后会回到这里 //ios 5.0以上可以用该方法 }]; } 程序默认的动画效果是从下往上弹出,可以改modalTransitionStyle换成其他效果 modalView.modalTransitionStyle = UIModalTransitionStyleCoverVertical; typedef NS_ENUM(NSInteger, UIModalTransitionStyle) { UIModalTransitionStyleCoverVertical = 0,//默认垂直向上 UIModalTransitionStyleFlipHorizontal, 翻转效果 UIModalTransitionStyleCrossDissolve,淡入淡出 #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2 UIModalTransitionStylePartialCurl,翻页效果 #endif }; 需要注意的地方 :1.在弹出的模态视图上点击返回按钮后,该视图对象彻底被释放了,记得要将添加到该视图上的一些对象都写在dealloc方法中
dismissViewControllerAnimated为什么不起作用
UIWindow是视图的载体,这个UIWindow是在AppDeleaget中定义的UIWindow 。你这里之所以没有效果的原因是,你自己创建 的UIWindow。所以如果要起作用,你需要访问AppDelegate 中的UIWindow对象。你可以尝试通过通知的方式改变 self.window?.rootViewController 的指向,如在AppDelegate中有showMain函数 func showM...
怎样连续dismiss2个ViewController
其实很简单, 直接[self.presentingViewController.presentingViewController dismissViewControllerAnimated:YES completion:nil];就可以了。因为控制器堆栈是dismiss掉下面的,上面的自动就dismiss了。
ios uitabbarcontroller之间怎么跳转
1.导航类型UINavigationController 适用于父子页面的跳转UITabBarController 适用于平级页面的跳转 2.presentViewController / dismissViewControllerAnimated和pushViewController / popViewController(1)只有从UINavigationController导航过来的UIViewController 才可以使用pushViewController / popViewController,从其它导...
dismiss返回控制器,怎么返回到指定控制器
我们可以在push的时候来设置这个自定义按钮,push有一个方法 - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated{} 在这个方法中viewController是push的对象 但是要判断这个viewController是不是根控制器 ...
dismiss返回控制器,怎么返回到指定控制器
用面行代码管间跳转少层用面行代码进行pop直接返根控制器 [self.navigationController popToRootViewControllerAnimated:YES];
如何利用系统的MFMessageComposeViewController进行短信发送
controller animated:YES];(2) 执行代理方法 //Tells the delegate that the user finished composing the message -(void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result { [selfdismissModalViewControllerAnimated:YES];...
dismissViewControllerAnimated问题,求教
本文是使用纯代码实现一个导航栏的效果。单击按钮并且产生事件。基本思路是: 1.创建一个导航栏(UINavigationBar对象) 2.创建一个导航栏集合(UINavigationItem对象) 3.创建一个左边按钮、一个右边按钮(UIBarButtonItem对象),并实现对应的...
UITextField光标不显示是什么情况
光标不显示,而键盘会出现。[self dismissViewControllerAnimated:YES completion:NULL] (其中这个ViewController是MFMessageComposeViewController)[UIAlertView show][self.navigationController pushViewController:vc animated:YES];把其中的改成dismissViewControllerAnimated:NO就不会有这个问题了!
presentedviewcontroller是什么控制器
presentingViewController:The view controller that presented this view controller. (read-only),present出来本视图控制器的视图控制器 如A-->弹出B, 则A.presentedViewController = B B.presentingViewController = A dismissViewControllerAnimated:YES Dismisses the view controller that was presented ...
【转】iOS-OC PresentedViewController 与 PresentingViewControl...
使用场景一:presentingViewController 从A跳转到B,从B跳转到C,从C跳转到D,如何由D直接返回到A呢?可以通过 presentingViewController 一直找到A控制器,然后调用A控制器的 dismissViewControllerAnimated 方法。UIViewController*controller=self;while(controller.presentingViewController){ controller=controller...