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.
我正在更新我的纵向模式 iPad 应用程序以支持纵向和横向模式的方向。
问题是当我在纵向模式下添加活动指示器视图然后将方向更改为横向时,指示器视图仍处于纵向模式。
您应该添加以下代码行:
[yourActivityIndicatorView setAutoresizingMask:UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin];
这将使您的活动指示器始终位于屏幕中间。