UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:@"잠시만 기다려주세요.\n로딩중..."
message:nil delegate:self cancelButtonTitle:nil otherButtonTitles: nil] autorelease];
[alert show];
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc]
initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
indicator.center = CGPointMake(alert.bounds.size.width / 2, alert.bounds.size.height - 50);
[indicator startAnimating];
[alert addSubview:indicator];
[indicator release];
'영삼이의 IT정보' 카테고리의 다른 글
브라우저 구별 (0) | 2011.11.11 |
---|---|
UIAlertView without Buttons - Please Wait Dialog (2) | 2011.11.09 |
자바스크립트 명령어 (0) | 2011.11.04 |
아이폰에 카메라 렌즈를 장착하게 된다면? (0) | 2011.11.02 |
jQuery Mobile 일본글 (0) | 2011.10.31 |