iOS - Alertas
Uso de Alertas
Os alertas são usados para fornecer informações importantes ao usuário. Somente depois de selecionar a opção na visualização de alerta, podemos prosseguir usando o aplicativo.
Propriedades Importantes
- alertViewStyle
- cancelButtonIndex
- delegate
- message
- numberOfButtons
- title
Métodos Importantes
- (NSInteger)addButtonWithTitle:(NSString *)title
- (NSString *)buttonTitleAtIndex:(NSInteger)buttonIndex
- (void)dismissWithClickedButtonIndex:
(NSInteger)buttonIndex animated:(BOOL)animated
- (id)initWithTitle:(NSString *)title message:
(NSString *)message delegate:(id)delegate
cancelButtonTitle:(NSString *)cancelButtonTitle
otherButtonTitles:(NSString*)otherButtonTitles, ...
- (void)show
Atualize ViewController.h da seguinte maneira -
Faça sua classe em conformidade com o protocolo de delegação de visualização de alerta adicionando < UIAlertViewDelegate> como mostrado abaixo em ViewController.h.
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController<UIAlertViewDelegate> {
}
@end
Adicionar método personalizado addAlertView
-(void)addAlertView {
UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:
@"Title" message:@"This is a test alert" delegate:self
cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok", nil];
[alertView show];
}
Implementar método de delegação de visualização de alerta
#pragma mark - Alert view delegate
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:
(NSInteger)buttonIndex {
switch (buttonIndex) {
case 0:
NSLog(@"Cancel button clicked");
break;
case 1:
NSLog(@"OK button clicked");
break;
default:
break;
}
}
}
Atualize viewDidLoad em ViewController.m da seguinte forma -
(void)viewDidLoad {
[super viewDidLoad];
[self addAlertView];
}
Resultado
Quando executarmos o aplicativo, obteremos a seguinte saída -