gpt4 book ai didi

uitableview - 在 UITableView 的单元格上创建 iOS 7 风格的模糊

转载 作者:行者123 更新时间:2023-12-04 04:40:36 25 4
gpt4 key购买 nike

我已经能够使用这个库在 UIView 上创建模糊:
https://github.com/nicklockwood/FXBlurView

这非常好并且有效,我在 UITableView 上尝试过同样的方法,但它不起作用。
有没有人有其他想法?

编辑:

我能够让它与 FXBlurView 一起工作,只需要使用图层

最佳答案

这是一个令人惊讶的优雅解决方案。使用 UIToolBar它会自动在背景 View (实时)上带有模糊效果。只需将其设置为 backgroundview细胞。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

// Do all your other stuff for setting up this cell.

// Set the background view of the cell as UIToolbar for iOS 7 where it's translucent, picking up background view effect with blur.
UIToolbar *translucentView = [[UIToolbar alloc] initWithFrame:CGRectZero];

cell.backgroundView = translucentView;
//[translucentView release]; // If you are using retain/release for memory management(non-ARC).
return cell;
}

关于uitableview - 在 UITableView 的单元格上创建 iOS 7 风格的模糊,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18960586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com