반응형
UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:nil
delegate:self
cancelButtonTitle:@"취소"
destructiveButtonTitle:nil
otherButtonTitles:@"액션1", @"액션2", nil];
[sheet showInView:self.view];
// *********** ActionSheet 버튼 클릭시 실행하는 메소드. ***************************************
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == actionSheet.cancelButtonIndex)
{
NSLog(@"취소 버튼 클릭");
}
}
반응형
'IPHONE' 카테고리의 다른 글
Local Notification (0) | 2013.07.10 |
---|---|
사운드 (0) | 2013.07.04 |
UIViewAlert 사용하기. (0) | 2013.05.30 |
네비게이션바, 툴바 보이게하기. (0) | 2013.05.20 |
Simulator 에 앱경로 알아 보기. (0) | 2013.05.06 |