“我的通知中心”窗口小部件包含UITableView
,UILabel
上有UITableViewCell
我希望“模糊”/应用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];
当我运行此代码时,我的Notification Center Extension表示无法加载。
答案 0 :(得分: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模拟器,则选择其他设备。