
Hi,
Provide me good example of UIAlertView. What is the code of UIAlertView that I can use to display message to the user?
Thanks

Hello,
You can use the following code to display message to your user.
UIAlertView* alertView = [[UIAlertView alloc] initWithTitle:@"Title Here"
message:@"Message here" delegate:self
cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
[alertView release];
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.