UIView缩放动画

来源:互联网 发布:js 格式化日期 编辑:程序博客网 时间:2024/06/07 03:18
UIView *singleMapView = [[UIView alloc]initWithFrame:CGRectMake(10, 150, 300, 250)];
    singleMapView.backgroundColor = [UIColor blackColor];
    [self.view addSubview:singleMapView];
    
    singleMapView.transform = CGAffineTransformMakeScale(1, 1);
    
    [UIView animateWithDuration:3 animations:^{
        singleMapView.transform = CGAffineTransformMakeScale(1.2, 1.2);
    }completion:^(BOOL finish){
        [UIView animateWithDuration:3 animations:^{
            singleMapView.transform = CGAffineTransformMakeScale(1, 1);
        }];
    }];
0 0
原创粉丝点击