无论屏幕方向如何,iPhone中心活动指示器

时间:2011-05-09 02:03:24

标签: iphone objective-c ipad

无论屏幕方向如何,如何以编程方式居中显示活动指示器?

2 个答案:

答案 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 这是一个很棒的图书馆,可用于各种“加载”屏幕。