Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当 aUIWebView具有焦点时,是否可以淡化应用程序的背景(灯箱类型效果),保持UIWebView清晰?
UIWebView
在 webview 的 superview 中添加另一个透明视图(实现渐变效果):
[self.view addSubview:transparentView];
之后,将 webview 放在前面。
[self.view bringSubviewToFront:self.webView];