2011-04-07 3 views
0

단추를 누를 때 IBAction에 UIAlert를 삽입 할 수 있습니까? 어떻게해야합니까? 이 UIAlert는 "완료"메시지와 닫으려면 버튼을 보여줘야합니다.목표 C : IBaction의 UIAlert

답변

4
- (IBAction)onShowAlertView 
{ 
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"done" 
                 message:@"" 
                 delegate:nil 
               cancelButtonTitle:@"close" 
               otherButtonTitles:nil]; 
    [alertView show]; 
    [alertView release]; 
} 
+0

UIAlert를 확대 할 수 있습니까? UIAlert는 표준 크기입니까? – CrazyDev

+1

표준 구성 요소입니다. 사용자 정의 무언가를 원한다면 직접 작성해야합니다. –