autofill username and password in an HTML page opening in UIWebView
问题 How to find login form using RegsEx when using UIWebView to autofill data ? I have used following code to get all form data: int NoOfForms = [[self.browser stringByEvaluatingJavaScriptFromString:@"document.forms.length"] intValue]; NSMutableArray *formData = [[NSMutableArray alloc] initWithCapacity:0]; for (int i = 0 ; i < NoOfForms ; i++) { // total number of elements in each form int elementsInForm = [[self.browser stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document