본문 바로가기
Developer/IOS

Tag를 이용한 delegate 에서의 분기문

by MindOpener 2013. 8. 1.
반응형

http://www.idev101.com/code/User_Interface/UIAlertView.html



   UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:@"Error" message:@"I'm sorry Dave, I'm afraid I can't do that." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil] autorelease];
    [alert setTag:12];
    [alert show];

... later ...

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
    if ([alertView tag] == 12) {    // it's the Error alert
        if (buttonIndex == 0) {     // and they clicked OK.
            // do stuff
        }
    }
}


반응형

'Developer > IOS' 카테고리의 다른 글

카테고리 사용법  (0) 2013.08.12
문자열 정리  (0) 2013.08.01
sqlLite 처리 ..  (0) 2013.07.25
현재 스크린 사이즈 와 회전 상태 파악  (0) 2013.07.24
IOS button color Change, round,  (0) 2013.07.16