在 mobile safari 中打开 POST 回复

发布于 2024-10-18 23:41:55 字数 785 浏览 4 评论 0原文

这是我的问题: 我向 www.aaa.com 发出 POST 请求:

NSString *post =[[NSString alloc] initWithFormat:@" bll bla ",importo];
NSURL *url=[NSURL URLWithString:@"http://www.aaa.com"];

NSLog(@"POST: %@",post); 
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding
    allowLossyConversion:YES];
... bla bla bla....
[request setHTTPBody:postData];
[request setValue:userAgent forHTTPHeaderField:@"User-Agent"];
httpResponse = [[NSMutableString alloc] init];
NSURLConnection *connection = [[NSURLConnection alloc] 
    initWithRequest:request 
    delegate:self];
[connection release];

我收到回复,一切正常! 但

- (void) connectionDidFinishLoading:(NSURLConnection *)connection

我想在移动 Safari 中打开响应页面,而不是在 uiwebview 中,可能我必须改变方法,有人有建议吗?

this is my question:
I make a POST requesto to www.aaa.com :

NSString *post =[[NSString alloc] initWithFormat:@" bll bla ",importo];
NSURL *url=[NSURL URLWithString:@"http://www.aaa.com"];

NSLog(@"POST: %@",post); 
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding
    allowLossyConversion:YES];
... bla bla bla....
[request setHTTPBody:postData];
[request setValue:userAgent forHTTPHeaderField:@"User-Agent"];
httpResponse = [[NSMutableString alloc] init];
NSURLConnection *connection = [[NSURLConnection alloc] 
    initWithRequest:request 
    delegate:self];
[connection release];

i receive a response and all is ok!
but in

- (void) connectionDidFinishLoading:(NSURLConnection *)connection

i want open the response page in mobile safari, not in a uiwebview, probably i must change approach, anyone have suggestion?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的奇迹 2024-10-25 23:41:55

如果你想在 Safari 中打开 URL,请调用:

[[UIApplication sharedApplication] openURL: yourUrl];

If you want to open URL in Safari, call:

[[UIApplication sharedApplication] openURL: yourUrl];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文