반응형
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 )
반응형
'프로그래밍 놀이터 > iOS' 카테고리의 다른 글
Xcode Line Delete Shortcut ( 라인 삭제 단축키 ) (0) | 2015.06.02 |
---|---|
[ios] View Controller 간의 transition control 하기. (0) | 2012.11.05 |
[ios] UITextField 를 password field 로 만드는 방법. (2) | 2012.11.05 |
[ios] objective-c block code 사용하기. (0) | 2012.11.04 |
[ios] object-c 제대로 singleton 만드는 방법. (0) | 2012.11.04 |
댓글