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.
我有一个 alpha 设置为 0.3 的透明视图,在它后面有一些视图,IOS 中是否有任何选项可以将透明视图后面的一些视图设置为隐藏?
我需要一半的视图在透明的后面,而另一半不是,只显示一半的视图
您可以在建立 IBOutlet 连接后隐藏它
[yourView setHidden:YES];
如果要隐藏它们,可以hidden将不需要的视图的属性设置为。YES
hidden
YES
您可以将 alpha 设置为 0。
[myView removeFromSuperView]如果有意义的话,你也可以。
[myView removeFromSuperView]