UIAlertView *alert = [[UIAlertView alloc] init];
alert.delegate = self;
alert.title = @"타이틀입니다.";
alert.message = @"메세지를 적습니다. ^^";
[alert addButtonWithTitle:@"아니오"];
[alert addButtonWithTitle:@"예"];
alert.cancelButtonIndex = 0;
[alert show];
// ********************* 버튼 선택에 따른 처리 *******************************************
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
// 버튼이 취소버튼인지 비교.
if (buttonIndex != alertView.cancelButtonIndex)
{
// 예 버튼이 눌렸을때.
UIAlertView *alert = [[UIAlertView alloc] init];
alert.title = @"참! 잘했어요.";
alert.message = @"예를 눌렀군요.";
[alert addButtonWithTitle:@"OK"];
[alert show];
}
}
'IPHONE' 카테고리의 다른 글
사운드 (0) | 2013.07.04 |
---|---|
UIActionSheet 사용하기. (0) | 2013.05.30 |
네비게이션바, 툴바 보이게하기. (0) | 2013.05.20 |
Simulator 에 앱경로 알아 보기. (0) | 2013.05.06 |
사용자가 백드라운드를 터치했을 때 키보드 감추기. (0) | 2013.04.28 |