我正在尝试UIBlurEffect
并UIVibrancyEffect
查看。
Apple docs here声称“notificationCenterVibrancyEffect”,但即使在我的课程中导入 UIKit 之后,它也会抛出No known class method for selector notificationCenterVibrancyEffect
.
代码如下所示,其他所有类方法都可以正常解析:
UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVibrancyEffect *vibrancyEffect = [UIVibrancyEffect notificationCenterVibrancyEffect];
UIVisualEffectView *blurEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
UIVisualEffectView *vibrancyEffectView = [[UIVisualEffectView alloc] initWithEffect:vibrancyEffect];