0

我想看看是否有办法在初始化 NSMutableURLRequest 后更改请求 url?我查看了实例方法,但没有任何地方表明您可以更改 url。我试图发出“URL”的请求并相应地更改它,但它仍然指向旧的 url。

任何知道如何改变它的人都想知道它。

谢谢。

4

1 回答 1

4

NSMutableURLRequest 上有一个方法叫做- (void)setURL:(NSURL *)theURL

这是一个例子:

NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSMutableURLRequest *req = [[NSMutableURLRequest alloc] initWithURL:url];
NSURL *anotherURL = [NSURL URLWithString:@"http://www.yahoo.com"];
[req setURL:anotherURL];

具体来说,方法文档位于: https ://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSMutableURLRequest_Class/Reference/Reference.html#//apple_ref/occ/instm/NSMutableURLRequest/设置网址

于 2012-11-19T22:59:02.360 回答