Tuesday 14 June 2011

How to Show a UIAlertView

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"Alert Succesfull." delegate:self cancelButtonTitle:@"Ok" otherButtonTitles: @"Cancel", nil];
[alert show];
[alert release];

No comments:

Post a Comment