반응형
***.h 해더 파일
/*뱅글뱅글 하게 돌아가게 하는것 */
IBOutlet UIActivityIndicatorView *activityIndicator;
/*경고 창 에 띄우는 것*/
IBOutlet UIAlertView *alert;
****.m 소스 파일
//알람창
alert = [[UIAlertView alloc] initWithTitle:@"홈페이지에서 정보 수집중 message:@"LOADING ..."
delegate:self
cancelButtonTitle:nil
otherButtonTitles:nil];
[alert show];
//빙글뱅글
//빙글뱅글
activityIndicator =[[UIActivityIndicatorView alloc]
initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
[activityIndicator setCenter:
CGPointMake(alert.bounds.size.width/2, alert.bounds.size.height-50)];
--------------------
- (void)dealloc {
[activityIndicator release];
[alert release];
[super dealloc];
}'ios aos 개발 > iPhone' 카테고리의 다른 글
[iPhone] 어플 실행시 navigation barbutton 만들기 (0) | 2011.07.03 |
---|---|
[iPhone] UITableVIew 꼭 써야하는 함수 (0) | 2011.07.02 |
[iPhone] Uitableview 선택 해제 (0) | 2011.06.01 |
[iPhone] Thread 작성법 및 UI 변수와 데이터 주고 받기 (0) | 2011.05.23 |
[Iphone] 홈버튼 눌렀을시 종료 시키기 (0) | 2011.05.13 |