'UIAlertView 버튼 이벤트'에 해당되는 글 1건

  1. 2014.07.08 [IOS] - IOS UIAlertView 버튼 이벤트

[IOS] - IOS UIAlertView 버튼 이벤트

IOS ( Object-C ) 2014. 7. 8. 15:48
반응형

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {

  NSInteger tag = alertView.tag;


  if( tag == 1 ) {

    if( buttonIndex == 0 ) {

왼쪽 버튼

    } else if ( buttonIndex == 1 ){

      오른쪽 버튼

    }

  }

}

반응형
: