Develop
2013.10.14 14:38
[ios] UIAlertView 초간단 샘플 ㅎㅎ
조회 수 46687 댓글 0
UIAlertView와 Delegate 함수 초간단 샘플~
//경고창 1. UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"A" message:@"" delegate:self cancelButtonTitle:@"확인" otherButtonTitles:@"취소", nil]; [alert show]; [alert release]; //경고창 2 UIAlertView *alert =[[UIAlertView alloc]initWithTitle:@"B" message:@"" delegate:self cancelButtonTitle:@"확인" otherButtonTitles:@"취소", nil]; [alert show]; [alert release]; //경고창 3 UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"C" message:@"" delegate:self cancelButtonTitle:@"확인" otherButtonTitles:@"취소", nil]; [alert show]; [alert release]; //경고창의 버튼 이벤트를 감지하는 델리게이트. - (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex { //경고창의 타이틀을 비교해서 경고창을 구별한다. if ( [[alertView title] isEqualToString:@"A"]) { if(buttonIndex==0){ }else { } } else if ( [[alertView title] isEqualToString:@"B"]) { if(buttonIndex==0){ } } else if ( [[alertView title] isEqualToString:@"C"]) { if(buttonIndex==0){ } } }
-
[python] 파이썬 공부하는 사이트~
-
[mac] Charlesproxy 간단한 설정 내용~
-
[js] 웹페이지에서 특정 엘리먼트 드래그, 복사, 컨텍스트메뉴, 키보드 막기
-
티스토리 테이블 html,css 구문
-
[php] XE 에서 php 구문 사용하기 (XE 템플릿에서)
-
[ios] 배열(NSArray) 연산과 간단한 애니메이션(split images)
-
[ios] Random Thoughts: Rand() vs. arc4random()
-
[linux] 특정 문자열 포함된 파일 찾는 명령어
-
[ios] UIAlertView 초간단 샘플 ㅎㅎ
-
[mac] 맥에서 슬립(잠자기) 모드 진입을 막는 방법~
-
[mac] Mac에서 Mac으로 원격제어하기 (맥에서 맥으로)
-
[linux] 우분투 APM + phpmyadmin 설치