【代码笔记】伸缩式动画_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 【代码笔记】伸缩式动画

【代码笔记】伸缩式动画

 2016/5/25 5:34:30  Livia.Chen  程序员俱乐部  我要评论(0)
  • 摘要:一,效果图。二,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview.self.title=@"伸缩式动画";}//点击任何处,弹出动画-(void)touchesBegan:(NSSet*)toucheswithEvent:(UIEvent*)event{UIView*zanView=[[UIViewalloc]initWithFrame:CGRectMake(50,100,100
  • 标签:笔记 代码

一,效果图。

二,代码。

class="cnblogs_code_copy" style="font-size: 14pt;">复制代码
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    self.title=@"伸缩式动画";
}
//点击任何处,弹出动画
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    
    UIView *zanView = [[UIView alloc] initWithFrame:CGRectMake(50, 100, 100, 100)];
    zanView.backgroundColor = [UIColor redColor];
    [self.view addSubview:zanView];
    
    [UIView animateWithDuration:0.3 animations:^{
        zanView.transform = CGAffineTransformMakeScale(1.2, 1.2);
    } completion:^(BOOL finished) {
        [UIView animateWithDuration:0.3 animations:^{
            zanView.transform = CGAffineTransformMakeScale(0.9, 0.9);
        } completion:^(BOOL finished) {
            [UIView animateWithDuration:0.3 animations:^{
                zanView.transform = CGAffineTransformMakeScale(1.0, 1.0);
            } completion:^(BOOL finished) {
                
            }];
        }];
    }];
    
}
复制代码

 

 

   
发表评论
用户名: 匿名