我正在尝试查看是否在初始化NSMutableURLRequest之后更改请求url的方法吗?我调查了实例方法,但无处表明您可以更改URL。我试图发出“ URL”的请求并进行相应的更改,但是它仍然指向旧的url。
任何人都知道如何更改它想知道它。
谢谢。
最佳答案
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/setURL:
关于iphone - 初始化后更改NSMutableURLRequest的URL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13463549/