iOS UIViewAinmation 坑

来源:互联网 发布:蚂蚁宝卡 知乎 编辑:程序博客网 时间:2024/06/07 20:07
[UIView animateWithDuration:5 animations:^{                    [self.view setBackgroundColor:[UIColor colorWithRed:(arc4random()%255/255.00) green:(arc4random()%255/255.00) blue:(arc4random()%255/255.00) alpha:1]];                } completion:^(BOOL finished) {                    NSLog(@"%d",i);                }]

当 animation Block 内 如果没有动画内容那么 他会瞬间调用 finished;结束动画!!!!!

0 0
原创粉丝点击