我在视图中有一个UIWebView,但我想要做的是隐藏背景但仍然显示UIWebView。我是移动开发的新手。我已经研究并使用过网络代码,但无法找到解决方案,任何人都可以帮忙。感谢。
[UIView animateWithDuration:0.3 animations:^() {
view.alpha = 0.0;
}];
我已经让UIWebView淡出但这不是我想要的,基本上UIWebView仍然需要可见但背景要淡出或隐藏背景而不是UIWebView
我也尝试过:
[UIView beginAnimations: @"Fade Out" context:nil];
[UIView setAnimationDuration:2.0];
[self.view setAlpha:0.0f];
[UIView commitAnimations];
似乎只淡出UIWebView
答案 0 :(得分:1)
您正在视图本身上设置alpha,它将应用于视图及其子视图。更改其背景颜色
[UIView animateWithDuration:0.3f animations:^{
view.backgroundColor = [UIColor clearColor];
}];