UIViewAlert 사용하기.

IPHONE 2013. 5. 30. 09:25
반응형

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];       
    }
   
}

반응형
Posted by 컴스터
,