
hello,
how can i show alert box in my iphone application??

hello,
you can use this code for show the alert ..
UIAlertView *alt = [[UIAlertView alloc] initWithTitle: @"Title" message: @"Any massege" delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil];
[alt show];
[alt release];