Contents

조회 수 46172 댓글 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#] MD5, SHA1 해시 & 인코딩

  2. [android] XML파서(XMLParser)의 종류와 성능 비교에 대한 발표 자료

  3. [android][ios] 알림(Notification) 기능에 대한 원리와 구현 방안 (APNS포함)

  4. [ios] 소소한 팁 (Rect,Point,Path,URL 등)

  5. [svn] 콘솔에서 svn 사용시 레티나용 이미지 add 안될 때..

  6. [ios] UIView에서 상위 UIViewController 가져오기

  7. [mac] Mac에서 Mac으로 원격제어하기 (맥에서 맥으로)

  8. [mac] 맥에서 슬립(잠자기) 모드 진입을 막는 방법~

  9. [ios] UIAlertView 초간단 샘플 ㅎㅎ

  10. [linux] 특정 문자열 포함된 파일 찾는 명령어

  11. [ios] Random Thoughts: Rand() vs. arc4random()

  12. [js] 웹페이지에서 특정 엘리먼트 드래그, 복사, 컨텍스트메뉴, 키보드 막기

Board Pagination Prev 1 2 3 4 5 6 7 Next
/ 7