无论屏幕方向如何,如何以编程方式居中显示活动指示器?
答案 0 :(得分:12)
尝试设置活动视图的center
属性,如下所示:
activity.center = CGPointMake(self.view.frame.size.width/2,self.view.frame.size.height/2);
在viewDidLoad
中,注册设备轮换的通知:
- (void)viewDidLoad {
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(didRotate:)
name:UIDeviceOrientationDidChangeNotification object:nil];
}
并实施didRotate:
-(void)didRotate:(NSNotification *)notification {
if (activity) {
activity.center = CGPointMake(self.view.frame.size.width/2,self.view.frame.size.height/2);
}
}
答案 1 :(得分:1)
我建议你使用https://github.com/jdg/MBProgressHUD 这是一个很棒的图书馆,可用于各种“加载”屏幕。