UIAlertView wont delegate
问题 I'm try to get from an UIAlertView the Content with following: UIAlertView *loginView = [[UIAlertView alloc] initWithTitle:@"Login" message:@"Please enter user and pass" delegate:self cancelButtonTitle:@"Abort" otherButtonTitles:@"Login", nil]; [loginView setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput]; [loginView show]; and then -(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex { if (buttonIndex == 1) { UITextField *username = [alertView