- (BOol)textFIEldShouldReturn:(UITextFIEld *)textFIEld {[itemFIEld resignFirstResponder];NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];Nsstring *username = [defaults objectForKey:@"storedUsername"];Nsstring *passWord = [defaults objectForKey:@"storedPassWord"];NSURL *url = [NSURL URLWithString:@"http://www.example.net/"];AFhttpClIEnt *clIEnt = [[AFhttpClIEnt alloc] initWithBaseURL: url];[clIEnt setAuthorizationheaderWithUsername:username password:passWord];NSMutableURLRequest *request = [clIEnt requestWithMethod:@"GET" path:[@"/example/itemlookup.PHP?item=" stringByAppendingString:itemFIEld.text] parameters:nil];AFhttpRequestoperation *operation = [[AFhttpRequestoperation alloc] initWithRequest:request];[operation setCompletionBlockWithSuccess:^(AFhttpRequestoperation *operation,ID responSEObject) { //calling again here was the only way I Could figure out to get this into my webvIEw //need to get response from above and put into the uiwebvIEw [webVIEw loadRequest:request]; NSLog(@"Success");} failure: ^(AFhttpRequestoperation *operation,NSError *error) { NSLog(@"Failure"); }];NSOperationQueue *queue = [[NSOperationQueue alloc] init];[queue addOperation:operation];return YES; }解决方法 我建议使用AFNetworking的UIWebVIEw类别,它正是这样做的;使用AFhttpRequestoperation加载网页内容,然后将其作为HTML字符串加载到Web视图中.
否则,我建议您查看该类别,看看您是否可以调整其代码供您使用. https://github.com/AFNetworking/AFNetworking/blob/master/UIKit%2BAFNetworking/UIWebView%2BAFNetworking.m
总结以上是内存溢出为你收集整理的objective-c – 将AFHTTPRequestOperation的响应传递给UIWebview全部内容,希望文章能够帮你解决objective-c – 将AFHTTPRequestOperation的响应传递给UIWebview所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)