Contents

조회 수 46124 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

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){
            
        }
    }
    
}


?

  1. [c] 파일입출력 간단한 설명

  2. [c] 파일입출력, 링크리스트(linked list)를 이용한 주소록(도스용) 소스코드

  3. [c] 패스워드 암호화/사용자 정보 보기

  4. [c] 패킷 에널라이저 예제 소스(성안당)

  5. [c] 패킷 유량/프로토콜 통계 모니터링..

  6. [c] 패킷정보출력(경로, 패킷길이, 3hand, sync, ack..)

  7. [c] 팩토리얼 서버/클라이언트..

  8. [c] 팩토리얼.. - 재귀함수

  9. [c] 포인터 학습용 예제 소스 코드

  10. [c] 포인터와 함수포인터에 대해..

  11. [c] 프로그래밍 ppt, 스킬업 (비트 수업자료)

  12. [c] 프로그래밍 과제..(colprint)

Board Pagination Prev 1 ... 29 30 31 32 33 34 35 36 37 38 ... 98 Next
/ 98