模仿照相机的照相特效
UIView *flashView = [[UIView alloc] initWithFrame:self.view.frame];
[flashView setBackgroundColor:[UIColor whiteColor]];
[[[self view] window] addSubview:flashView];
[UIView animateWithDuration:.4f
animations:^{
[flashView setAlpha:0.f];
}
completion:^(BOOL finished){
[flashView removeFromSuperview];
}
];
5677

被折叠的 条评论
为什么被折叠?



