iOS show a alert view

AlertView
UIAlertView *alert= [[UIAlertView alloc] initWithTitle:@"Message!" message:@"Callout" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
       
[alert show];

0 意見: