zoukankan      html  css  js  c++  java
  • iOS中UIView翻转效果实现

    本文转载至  http://baishiyun.blog.163.com/blog/static/13057117920148228261747/

    新建一个view-based模板工程,在ViewController文件中添加下面的代码,即可实现翻转效果;

    - (void)viewDidLoad {

         [super viewDidLoad];

    //需要翻转的视图

    UIView *parentView = [[UIView alloc] initWithFrame:CGRectMake(0, 150, 320, 200)];

    parentView.backgroundColor = [UIColor yellowColor];

    parentView.tag = 1000;

    [self.view addSubview:parentView];

    }

    //需要在h头文件声明下面的动作响应函数

    //在xib文件中添加一个button,其响应函数为下面的函数

    //运行程序后,点击button就看到翻转效果

    -(IBAction)ActionFanzhuan{

    //获取当前画图的设备上下文

    CGContextRef context = UIGraphicsGetCurrentContext();

    //开始准备动画

    [UIView beginAnimations:nil context:context];

    //设置动画曲线,翻译不准,见苹果官方文档

    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

    //设置动画持续时间

    [UIView setAnimationDuration:1.0];

    //因为没给viewController类添加成员变量,所以用下面方法得到viewDidLoad添加的子视图

    UIView *parentView = [self.view viewWithTag:1000];

    //设置动画效果

    [UIView setAnimationTransition: UIViewAnimationTransitionCurlDown forView:parentView cache:YES];  //从上向下

    // [UIView setAnimationTransition: UIViewAnimationTransitionCurlUp forView:parentView cache:YES];   //从下向上

    // [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromLeft forView:parentView cache:YES];  //从左向右

    // [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromRight forView:parentView cache:YES];//从右向左

    //设置动画委托

    [UIView setAnimationDelegate:self];

    //当动画执行结束,执行animationFinished方法

    [UIView setAnimationDidStopSelector:@selector(animationFinished:)];

    //提交动画

    [UIView commitAnimations];

    }

    //动画效果执行完毕

    - (void) animationFinished: (id) sender{

    NSLog(@"animationFinished !");

    }

  • 相关阅读:
    git执行sudo git pull origin xxx 提示 AutoMatic merge failed;fix conflicts and then commit the result
    mysql 两表关联更新
    宝塔上的redis 性能调整的requirepass 密码与配置文件的 requirepass 不一致
    php 默认文档为index.htm 或者其他
    layerui 弹窗里出现下拉框select
    微信小程序文字超出显示省略号
    MySQL用存储过程创建日期字典表
    书单
    手动更新表记录时自动更新 UPDATE_DATE
    Nginx $proxy_add_x_forwarded_for 实现多租户判断
  • 原文地址:https://www.cnblogs.com/Camier-myNiuer/p/4918655.html
Copyright © 2011-2022 走看看