Contents

Views 46208 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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. [ios] UIAlertView 초간단 샘플 ㅎㅎ

  2. [ios] UDID와 UUID (디바이스의 Unique Identifier)

  3. [ios] UDID 사용 제한에 따른 대안들

  4. [ios] Touch ID 적용 샘플 코드 (예제)

  5. [ios] Thread Loop 내에서 UI 업데이트 방법

  6. [ios] TextField 특정 문자만 사용하도록 하기

  7. [ios] Swift 4 String, Date, DateFormatter 예제

  8. [ios] Swift 4 Singleton inheritance

  9. [ios] Swift 4 Dictionary 사용하기

  10. [ios] StoryBoard(xib) 없이 프로젝트 만들기

  11. [ios] Start developing your navigation app for CarPlay without enrollment

  12. [ios] SQLite 사용하기(튜토리얼) + 샘플코드

Board Pagination Prev 1 ... 26 27 28 29 30 31 32 33 34 35 ... 71 Next
/ 71