解析源码地址:https://github.com/xhzengAIB/RealTimeBlur
#主要核心功能
- 增加一个UIView
- 使用动画修改透明度
代码:alpha = 0.1;是关键
1 | [[UIView alloc] initWithFrame:self.view.bounds]; |
1 | [UIView animateWithDuration:3 delay:0 options:UIViewAnimationOptionCurveEaseInOut animations:^{ |
#分析代码
- XHRealTimeBlur做了所有该做的事情。
- XHGradientView提供了一种蒙版的样式
- UIView (XHRealTimeBlur)用关联的方式,在UIView中加了方式和属性,使之使用方便。
- objc_getAssociatedObject 关联了属性,关联的主要点在这里