UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
indicator.frame = CGRectMake(0.0, 0.0, 40.0, 40.0);
indicator.center = self.view.center;
[self.view addSubview:indicator];
[indicator bringSubviewToFront:self.view];
[UIApplication sharedApplication].networkActivityIndicatorVisible = TRUE;
쓰기 당신은 당신이 How to programmatically add a simple default loading(progress) bar in iphone app
UPD에서 발견 된 표시를
[indicator stopAnimating];
을 숨길 때 표시를 코드 아래
[indicator startAnimating];
쓰기를 표시 할 때 : 경고 대화 상자를 만들 수 있습니다. t 버튼과 수동으로 사용자 지정 요소를 추가
UIAlertView *alert;
...
alert = [[UIAlertView alloc] initWithTitle:@"\n\nConfiguring Preferences\nPlease Wait..." message:nil delegate:self cancelButtonTitle:nil otherButtonTitles: nil]; //display without any btns
// alert = [[UIAlertView alloc] initWithTitle:@"\n\nConfiguring Preferences\nPlease Wait..." message:nil delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles: nil]; //to display with cancel btn
[alert show];
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
// Adjust the indicator so it is up a few pixels from the bottom of the alert
indicator.center = CGPointMake(alert.bounds.size.width/2, alert.bounds.size.height - 50);
[indicator startAnimating];
[alert addSubview:indicator];
이 경고를 닫으려면 단지에서
[alert dismissWithClickedButtonIndex:0 animated:YES];
더 많은 정보를 수행 http://iosdevelopertips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html IOS 9.0 UIAlertView가 사용되지 않았기 때문에
. 업데이트 된 답변을 보려면 [다음] (http://stackoverflow.com/a/25671652/6042879)을 따르십시오! –
신속한 https://github.com/shubh10/JustHUD –