zoukankan      html  css  js  c++  java
  • uiview 的transitionWithView 方法使用

    -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    {
        [UIView transitionWithView:_imageViewFirst duration:1.0f options:UIViewAnimationOptionTransitionFlipFromTop animations:^{
            _imageViewFirst.alpha=0;
            _imageViewFirst.center=CGPointMake(50, 20);
            
        } completion:^(BOOL finished) {
            
            
        }];
    
    }
  • 相关阅读:
    day11
    day10
    day9
    day8
    day7
    day6
    day14
    day13
    day12
    day11
  • 原文地址:https://www.cnblogs.com/thbbsky/p/4380237.html
Copyright © 2011-2022 走看看