Showing an error popover with UIAlertView
February 14, 2013 in iOS Snippets
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"640KB is not enough"
delegate:nil cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
[alert show]