iOS UIView - UIViewTransition动画

来源:互联网 发布:linux查看被占用的内存 编辑:程序博客网 时间:2024/05/20 06:27

-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{

    [UIViewbeginAnimations:@"Action"context:nil];

    [UIViewsetAnimationDuration:3];

   // [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromLeft forView:self.girlView cache:YES];

    [UIViewsetAnimationTransition: UIViewAnimationTransitionCurlUpforView:self.girlViewcache:YES];

    [UIViewsetAnimationRepeatAutoreverses:YES];//反转执行动画

    [UIViewcommitAnimations];

}



0 0
原创粉丝点击