-Dong- 2010. 3. 2. 14:20
델리게이트 <UIAlertViewDelegate>

띄우기

        UIAlertView *alert = [[UIAlertView alloc]
                              initWithTitle:@"My Title"
                              message:@"Message"
                              delegate:self
                              cancelButtonTitle:@"Cancel"
                              otherButtonTitles:nil];
        [alert show];
        [alert release];

델리게이트 메소드

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
//구현
}