本文主要是介绍modal的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
modal使用// 展示MJTwoViewController
MJTwoViewController *two = [[MJTwoViewController alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:two];
[self presentViewController:nav animated:YES completion:^{
NSLog(@"展示MJTwoViewController完毕.......");
}];
//关闭
[self dismissViewControllerAnimated:YES completion:^{
NSLog(@"关闭MJTwoViewController....");
}];
//方法效果同上
// [self.navigationController dismissViewControllerAnimated:YES completion:^{
// NSLog(@"关闭MJTwoViewController....");
// }];
这篇关于modal的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!