Return to Snippet

Revision: 50938
at September 9, 2011 17:40 by yasirmturk


Initial Code
- (void) showAlert:(NSString*)title withMessage:(NSString *) message {
	UIAlertView* alertView = [[UIAlertView alloc] initWithTitle:title 
														message:message 
													   delegate:self 
											  cancelButtonTitle:@"OK" 
											  otherButtonTitles:nil];
	[alertView show];
	[alertView release];
}

Initial URL
http://yasirmturk.com/blog

Initial Description


Initial Title
Method to create & show alert iOS SDK

Initial Tags
iphone

Initial Language
Objective C