我的通知中心小部件包含一个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];
当我运行此代码时,我的通知中心扩展程序说它无法加载。