我想在 UIWebView 中加载网页(包含表单:用户名和密码),但我希望在 UIWebView 时填充网页> 已加载。我读了很多东西,尝试了很多东西,但没有任何效果。
这是我的代码:
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString"https://login.live.com"]];
// Specify that it will be a POST request
request.HTTPMethod = @"OST";
// This is how we set header fields
[request setValue"application/xml; charset=utf-8" forHTTPHeaderField"Content-Type"];
[request setValue"username" forHTTPHeaderField"session[email]"];
// Convert your data and set your request's HTTPBody property
NSString *stringData = @"some data";
NSData *requestBodyData = [stringData dataUsingEncoding:NSUTF8StringEncoding];
request.HTTPBody = requestBodyData;
// Create url connection and fire request
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
[self.webView loadRequest:request];
Best Answer-推荐答案 strong>
假设您有一个这样定义的表单字段:
<input type="text" id="mytext">
然后你可以给这个字段赋值如下:
NSString *javascript = @"document.getElementById('mytext').value = 'new value'";
[webView stringByEvaluatingJavaScriptFromString:javascript];
以上代码需要在您的页面完全加载后运行。例如,您可以让您的 View Controller 实现 UIWebViewDelegate ,声明方法 - (void)webViewDidFinishLoadUIWebView *)webView 并在那里执行。
关于ios - 如何使用 Objective-C 填写 HTML 表单,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/22514795/
|