2

我的通知中心小部件包含一个UITableView,并且有一个UILabelUITableViewCell想“模糊”/应用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];

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

4

1 回答 1

1

我认为问题在于您将标签设置为等于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];

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

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

于 2015-01-06T03:55:04.587 回答