/ Published in: Objective C
Display simple alert box
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
UIAlertView *someError = [[UIAlertView alloc] initWithTitle: @"Network error" message: @"Error sending your info to the server" delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil]; [someError show]; [someError release];