// ViewController.m
- (IBAction)btnTouched:(id)sender
{
[self AlertWithTitle:@"Mensagem" andAlert:@"Isto é um teste!"];
}
// Retorna uma mensagem simples apenas com título e mensagem
-(void)AlertWithTitle:(NSString *)title_ andAlert:(NSString *)alert_
{
[[[[UIAlertView alloc] initWithTitle:title_ message:alert_ delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil] autorelease] show];
}