将UIVibrancyEffect应用于UITableViewCell中的UILabel



我的通知中心小部件包含一个UITableViewUITableViewCell上有一个UILabel,我想"模糊"/应用UIVibrancyEffect。这是我尝试过的,但它似乎导致了异常:

UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:[UIVibrancyEffect notificationCenterVibrancyEffect]];
effectView.frame = cell.longStatusLabel.bounds;
__strong UILabel *longStatus = cell.longStatusLabel;
cell.longStatusLabel = effectView;
[effectView.contentView addSubview:longStatus];
[cell addSubview:effectView];

当我运行此代码时,我的通知中心扩展说它无法加载。

我认为问题是您将标签设置为等于UIVisualEffectView。试试这个。以编程方式创建UILabel

UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:[UIVibrancyEffect notificationCenterVibrancyEffect]];
effectView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
UILabel *label = [[UILabel alloc] init];
label.text = @"my label";
label.textColor = [UIColor colorWithWhite:1.0 alpha:0.5f];
label.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
//...
[effectView.contentView addSubview:label];
[cell.contentView addSubview:effectView];

您还应该能够在界面生成器中使用具有模糊和活力效果的视觉效果视图执行此操作,而不必以编程方式完成。

此外,如果断点

未按预期工作,请尝试在调试时设置断点。如果它拒绝加载,请尝试从通知中心移除扩展程序并重新添加,或者如果您使用的是 iOS 模拟器,请选择其他设备。

相关内容

  • 没有找到相关文章

最新更新