2011-03-29 26 views

回答

1

您將要使用UIAlertView類。這裏有一個例子:

UIAlertView *alert = [[UIAlertView alloc] 
         initWithTitle: @"Wrong Color" 
         message: @"You chose the wrong color." 
         delegate: nil 
         cancelButtonTitle:@"OK" 
         otherButtonTitles:nil]; 
[alert show]; 
[alert release]; 
1

下面是一個例子:

UIAlertView *alert = [[UIAlertView alloc] 
      initWithTitle: @"Announcement" 
      message: @"You chose the wrong color!" 
      delegate: nil 
      cancelButtonTitle:@"OK" 
      otherButtonTitles:nil]; 
[alert show]; 
[alert release];