UIAlertView 띄우는 법


UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@""

                                                                     message:@"가라미네이트 "

                                                                     delegate:self

                                                       cancelButtonTitle:@"취소"                   /* nil 지정할 경우 cancel button 없음 */

                                                       otherButtonTitles:@"확인", nil];

    

[alert show];


Posted by 知彼知己百戰不殆
,