iPhone – Create a Message Box Using UIAlertView

In iPhone Application, you can use the UIAlertView to create a message box. The following code is an example.

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Your Messaage" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
[alert release];

 


                                        
Done =)

Reference: simple message box popup?

Advertisement

2 thoughts on “iPhone – Create a Message Box Using UIAlertView”

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.