2012. 1. 13. 13:56
[objective c] 간단하게 경고 팝업(UIAlertView) 띄우기
2012. 1. 13. 13:56 in 아이폰
UIAlertView
*alert = [[UIAlsertView alloc] initWithTitle:@"타이틀"
message:@"메시지"
delegate:해당 델리게이트
cancelButtonTitle:@"취소 버튼 타이틀"
otherButtonTitle:@"예", @"추가 버튼", nil];
[alert show];
[alert release];
message:@"메시지"
delegate:해당 델리게이트
cancelButtonTitle:@"취소 버튼 타이틀"
otherButtonTitle:@"예", @"추가 버튼", nil];
[alert show];
[alert release];
'아이폰' 카테고리의 다른 글
UINavigationController custom (0) | 2012.02.02 |
---|---|
[objective c] 기존 프로젝트에 core data 추가하기 (0) | 2012.01.20 |
UIImage to NSData 변환 (0) | 2012.01.05 |
[아이폰] 웹뷰에서 이벤트 가로채기 (0) | 2011.12.27 |
[iphone/objective c] 어플 내의 document에 데이터 저장하기 (0) | 2011.12.20 |