#和UIAlertView 一样好用
支持pod
pod 'XXBAlertView',:git => 'https://github.com/sixTiger/XXBAlertView'
- (IBAction)normalAction:(UIButton *)sender {
XXBAlertView *alertView = [[XXBAlertView alloc] initWithTitle:@"我是标题" delegate:self cancelButtonTitle:nil otherButtonTitles:@"确定",@"取消",nil];
alertView.alertViewStyle = XXBAlertViewStyleLoginAndPasswordInput;
[alertView show];
}
- (IBAction)inputAction:(id)sender {
}
- (void)alertView:(XXBAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
NSLog(@"%@",@(buttonIndex));
}