반응형
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"thank you for your order" message:message delegate:nil cancelButtonTitle:@"GREAT" otherButtonTitles:nil];
[alert show];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"주의" message:@"작성하신 글은 저장되지 않습니다. \n 계속 하시겠습니까?" delegate:self cancelButtonTitle:@"NO" otherButtonTitles:@"Yes", nil]; [alert show];
[alert release];
== 위에 것을 Delegate로 받는다.
// alert delegate ...
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 0)
{
// 첫번째 버튼.. 액션..
}
else if (buttonIndex == 1)
{
두번재 버튼 액션
}
}
반응형
'Developer > IOS' 카테고리의 다른 글
tableview:cellForRowAtIndePath; Method (0) | 2013.01.21 |
---|---|
테이블 뷰 / 네이게이션 컨트롤러 (0) | 2013.01.21 |
method & message [메소드 및 메시지] (0) | 2013.01.15 |
xcode 에서 기본적인 커서 사용법 (0) | 2013.01.11 |
액션과 아웃렛 ( IBAction & IBOutlet ) 에 대해서 (0) | 2013.01.11 |