我有一个UITableView
与一个UIImageView
作为backgroundView
。这就像一个魅力。但是,现在我正在尝试模糊此图像(使用UIVisualEffectView
),以便 tableView 的背景看起来模糊。但是,我的代码以某种方式忽略了图像,只是模糊了表格视图的白色背景。这是代码:
UIImageView *tempImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"sidebarImage"]];
UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *blurEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
[blurEffectView setFrame:tempImageView.bounds];
[tempImageView addSubview:blurEffectView];
self.tableView.backgroundView = tempImageView;
编辑:经过更多测试,我发现这适用于模拟器,但不适用于实际设备。我在井下附上了截图。更令人惊讶的是,当我注释掉[tempImageView addSubview:blurEffectView]
; 图像出现。这意味着图像正在被复制到手机中。