본문 바로가기

ios aos 개발/iPhone

[iPhone] 빙글빙글 효과 만들기 & 알림창(UIAlertView) 사라지게 하기

반응형
//알람창
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"홈페이지에서 정보 수집중"
								message:@"LOADING ..." 
								delegate:self 
								cancelButtonTitle:nil otherButtonTitles:nil];
	[alert show];//화면에 출력
UIActivityIndicatorView *activityIndicator = 
[[UIActivityIndicatorView alloc]
initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
[activityIndicator setCenter:CGPointMake(160, 240)];
[self.view addSubview:activityIndicator];
[activityIndicator startAnimating];

--------------------------
//stopAnimation 매소드는 사용자 정의 함수로 이 함수를 호출하여 알람창과 애니메이션 효과를 없앨 수 있다.
-(void)stopAnimation
{
	//빙글뱅글 닫기
	[activityIndicator stopAnimating];
	
	//알림창 닫기
	[alert dismissWithClickedButtonIndex:0 animated:YES];
	
}