【发布时间】:2015-05-17 08:11:34
【问题描述】:
从 iOS 8 开始,Apple 提供了更简单的模糊处理方法。但是我可以为它的外观设置动画吗?
CSDTimelineCell* headerCell = (CSDTimelineCell*)[self.timelineTabel cellForRowAtIndexPath:self.headerIndexPath];
UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *bluredEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
[bluredEffectView setFrame:headerCell.bounds];
[bluredEffectView setHidden: YES];
[headerCell addSubview:(UIView *)bluredEffectView];
[UIView transitionWithView:bluredEffectView
duration:3
options:UIViewAnimationOptionTransitionCrossDissolve
animations:^{
bluredEffectView.hidden = NO;
} completion:nil];
不推荐为此类设置 0 alpha 值。 有什么建议吗?
【问题讨论】:
标签: objective-c ios8 uiblureffect