iOS:UIView 模糊其后面移动的物体
我想知道是否有可能模糊视图后面的所有内容......这些东西预计会移动。
示例:我有一个包含 UITableView 的 UIViewcontroller 和一个可以通过触摸移动的小 UIView。我希望这个视图是透明的,但模糊其后面的任何内容,以达到与此类似的效果: http://www.codeproject.com/KB/dialog/rtaGlassEffectLib/rtaGlassEffect.png
那么...可能吗?
I'm wondering if it's possible to blur everything behind a view... Those things are expected to move.
Example: I have an UIViewcontroller containing an UITableView, and a small UIView over it, wich can be moved with touch. I want this view to be transparent but blurring anything behind it, to achieve an effect similar to this one :
http://www.codeproject.com/KB/dialog/rtaGlassEffectLib/rtaGlassEffect.png
So... possible or not ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果视图后面的情况没有变化,您可以截取屏幕截图(请参阅此问题:如何捕获当前视图屏幕截图并在代码中重用?(iPhone SDK))然后使用此库中的高斯模糊例程:http://code.google.com/p/simple-iphone-image-processing/
所以,是的这是可能的,但并不容易。您可以在这里找到可能有帮助的类似问题:stackoverflow.com/search?q=[iphone]+blur< /a>
If things are not changing behind the view you can take a screenshot (See this question: How to capture current view screenshot and reuse in code? (iPhone SDK)) then use the Gaussian blur routines from this library: http://code.google.com/p/simple-iphone-image-processing/
So, yes it's possible, but not super easy. You can find similar questions here that will probably help: stackoverflow.com/search?q=[iphone]+blur
我认为你可以使用这个库:
https://github.com/alexdrone/ios-realtimeblur
I think you can use this library:
https://github.com/alexdrone/ios-realtimeblur