QuartzCore 阴影 - 滞后 UITableView?
我有一个 UITableView (注意:UITableView 在 UIView 中),我认为在它下面添加一个阴影会很好。我用 QuartzCore 添加阴影,效果非常好。但我也注意到,当我从“详细视图”返回时,回到根的动画有点滞后。我听说 QuartzCore 和 CoreAnimation 会使应用程序变慢,或者在这种情况下会增加延迟。
首先,CoreAnimation 会使应用程序变慢,我说得对吗?
如果是这样,我怎样才能保留我的影子,但消除缓慢和滞后?
谢谢,我感谢所有的想法和答案!
I have an UITableView (NOTE:The UITableView is in a UIView) and I thought it would be nice to have an shadow added below it. I add the shadow with QuartzCore and it turns out really nice. But I also notice that when I come back from a 'Detail View' the animation back to the root is a bit lag. I've heard that QuartzCore and CoreAnimation can make the app slower, or in this case, add lag.
First, am I right that CoreAnimation makes the app slower?
If so, how can I keep my shadow but remove the slowness and lag?
Thanks and I appreciate all thoughts and answers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将另一个相同大小的视图放在表视图后面,并让该视图生成阴影。此外,如果您提供显式的
shadowPath
,图层阴影会更加高效。 最有效的方法是使用 Core Graphics 自己绘制阴影。Try putting another view the same size behind the table view and have that view generate the shadow. Also, layer shadows are much more efficient if you supply an explicit
shadowPath
. The most efficient way is to draw the shadow yourself using Core Graphics.