본문 바로가기
프로그래밍 놀이터/iOS

[ios] UIAlertView 와 delegate callback function.

by 돼지왕 왕돼지 2012. 11. 5.
반응형



UIAlertView 와 delegate callback function.

- ios의 UIAlertView 는 android 의 AlertDialog 에 매칭되는 녀석이다.

<UIAlertView 띄우기>

UIAlertView *alert = [UIAlertView alloc] initWithTitle:@"Alert View" message:@"This is alert view" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"yes", @"no";
[alert show]; 
[alert release]; 


<UIAlertView 결과 callback function>

- (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger) buttonIndex
{
   if ( buttonIndex == 0 )
   {
      // cancel clicked.
   }
   else if ( buttonIndex == 1 )
   {
      // yes clicked
   }
   else if ( buttonIndex == 2 )
   {
      // no clicked
   }




도움이 되셨다면 손가락 꾸욱~ ( 로그인 필요 x )



반응형

댓글