terça-feira, 29 de novembro de 2011

Função - Alerta simples com Título e Mensagem


// 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];
}