//경고창 1.
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"A" message:@"" delegate:self cancelButtonTitle:@"확인" otherButtonTitles:@"취소", nil];
[alert show];
[alert release];
//경고창 2
UIAlertView *alert =[[UIAlertView alloc]initWithTitle:@"B" message:@"" delegate:self
cancelButtonTitle:@"확인" otherButtonTitles:@"취소", nil];
[alert show];
[alert release];
//경고창 3
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"C" message:@"" delegate:self
cancelButtonTitle:@"확인" otherButtonTitles:@"취소", nil];
[alert show];
[alert release];
//경고창의 버튼 이벤트를 감지하는 델리게이트.
- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex
{
//경고창의 타이틀을 비교해서 경고창을 구별한다.
if ( [[alertView title] isEqualToString:@"A"])
{
if(buttonIndex==0){
}else {
}
}
else if ( [[alertView title] isEqualToString:@"B"])
{
if(buttonIndex==0){
}
}
else if ( [[alertView title] isEqualToString:@"C"])
{
if(buttonIndex==0){
}
}
}
'iOS' 카테고리의 다른 글
앱 정보 가져오기 (앱이름, 버전) (0) | 2012.09.22 |
---|---|
[iOS] NSThread를 사용하여 비동기식으로 웹에서 이미지 가져오기 (0) | 2012.09.18 |
[objective-c] actionSheet가 여러개 있을 경우 처리방법(링크) (0) | 2012.09.18 |
addSubView 된 객체에 대한 접근 방법 (0) | 2012.09.17 |
테더링 바 제거 방법 일단 임시 (0) | 2012.09.17 |