以下代码适用于简单的代码:
UIVisualEffectView *blurView
但是,当我尝试为其添加一个具有活力效果的标签时,它会分解并出现错误。 :(
UIBlurEffect * effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
_blurView = [[UIVisualEffectView alloc] initWithEffect:effect];
_blurView.backgroundColor = [UIColor colorWithWhite:0.8 alpha:0.5];
[self addSubview:_blurView];
UIVisualEffectView * vibrancyView = [[UIVisualEffectView alloc] initWithEffect:effect];
[_blurView.contentView addSubview:vibrancyView];
_titleLabel = [[UILabel alloc] init];
_titleLabel.font = [UIFont boldSystemFontOfSize:17.0];
_titleLabel.textColor = [UIColor colorWithWhite:0.1 alpha:0.5];
_titleLabel.text = @"TITLE";
[vibrancyView.contentView addSubview:_titleLabel];
自定义设置框架方法:
#pragma mark -
- (void)setFrame:(CGRect)frame
{
[super setFrame:frame];
_blurView.frame = CGRectMake(0, 0, frame.size.width, frame.size.height);
_titleLabel.frame = CGRectMake(16, 16, 200, 30);
}
标签不会显示在屏幕上,但如果我将其作为简单的子视图添加到blurView中,它就会显示。
[_blurView addSubview:_titleLabel];
我在初始化方法中使用代码,可能是导致问题的原因吗?
- (instancetype)init
{
self = [super init];
if (self) {
// Code...
}
return self;
}
我需要它在初始化方法中,以便与我编写代码的方式保持一致。
编辑1:
vibrancyView也应设置框架。
vibrancyView.frame = CGRectMake(0, 0, _blurView.frame.size.width, _blurView.frame.size.height);
结果显示源中的示例是不完整。
编辑2:
标签确实显示但没有活力效果。
帮助!的
答案 0 :(得分:1)
你错过了活力效果的创造:
UIVibrancyEffect * vibrancyEffect = [UIVibrancyEffect effectForBlurEffect:effect];
稍后你应该将它传递给活力视图:
UIVisualEffectView * vibrancyView = [[UIVisualEffectView alloc] initWithEffect: vibrancyEffect];
我在github上创建了一个类,它简化了创建UIVisualEffectView所需的所有锅炉代码。