Why does orientation change animate when UIView is hidden?
My UIView is hidden, however when the device orientation changes i still see the orientation-change animated black cl开发者_运维百科ipping areas. How do i prevent this?
You can change the background color of the window to your application background color. Can help in some situations.
Make the view transparent
someView.alpha = 0.0f;
精彩评论