现在的位置: 首页 > 综合 > 正文

iOS动画

2016年05月28日 ⁄ 综合 ⁄ 共 403字 ⁄ 字号 评论关闭

    //动画

    CATransition *transition = [CATransition
animation];

    transition.duration =
6.0;

    transition.type =
kCATransitionMoveIn;

    transition.subtype =
kCATransitionFromBottom;

    [self.view.layer
addAnimation:transition forKey:@"t"];

    

    [UIView
animateWithDuration:4.0
animations:^{

        self.view.backgroundColor = [UIColor
grayColor];

    }
completion:^(BOOL finished) {

        self.view.backgroundColor = [UIColor
purpleColor];

    }];

抱歉!评论已关闭.