码迷,mamicode.com
首页 > 移动开发 > 详细

iOS模态视图

时间:2015-07-24 12:00:26      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

    //模态视图(临时弹出使用)
    GreenViewController *green=[[GreenViewController alloc] init];
    green.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;
    
    [self presentViewController:green animated:YES completion:nil];   

 

 

 

-(void)buttonAction:(UIButton*)sender
{   //退回模态视图
    [self dismissViewControllerAnimated:YES completion:nil];
}

iOS模态视图

标签:

原文地址:http://www.cnblogs.com/-ios/p/4672772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!