有時候,咱們但願在整個頁面提示 UIActivityIndicator ,通常的會在頁面上面加一層 View ,其透明有底色,但那是不必定的,我能夠只使用 UIActivityIndicator 來實現,只是對 一 中的代碼修改一下,代碼以下。markdown
- (IBAction)click_button:(id)sender { self.activity_indicator_view = [[UIActivityIndicatorView alloc] initWithFrame:self.view.bounds]; [self.activity_indicator_view setUserInteractionEnabled:YES]; [self.activity_indicator_view setActivityIndicatorViewStyle:UIActivityIndicatorViewStyleWhiteLarge]; self.activity_indicator_view.backgroundColor = [UIColor grayColor]; self.activity_indicator_view.alpha = 0.5; [self.view addSubview:self.activity_indicator_view]; [self.activity_indicator_view startAnimating]; NSLog(@"aaaa"); }
咱們作的修改是如下幾點:
* 初始化時指定 UIActivityIndicator 的框架爲當前 View 的大小
* 爲其是指背景色和透明度框架
效果以下圖
spa