0

当 aUIWebView具有焦点时,是否可以淡化应用程序的背景(灯箱类型效果),保持UIWebView清晰?

4

1 回答 1

1

在 webview 的 superview 中添加另一个透明视图(实现渐变效果):

[self.view addSubview:transparentView];

之后,将 webview 放在前面。

[self.view bringSubviewToFront:self.webView];
于 2013-05-22T16:08:39.980 回答