1,實現一個alertView
1 UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"" message:@"請輸入Wi-Fi密碼" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"確定", nil]; 2 alertView.alertViewStyle = UIAlertViewStyleSecureTextInput; 3 [alertView show];
2,實現代理方法
1 #pragma mark - UIAlertViewDelegate 2 - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{ 3 UITextField *passwordText = [alertView textFieldAtIndex:0]; 4 // passwordText. 5 NSLog(@"%@",passwordText.text); 6 NSLog(@"buttonIndex:%d",buttonIndex); 7 }