我有一个这样创建的 NSMutableURLRequest:
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:<my url>];
urlRequest = [httpClient requestWithMethod:<my method>
path:<my uri>
parameters:<my parameters>];
在我的程序稍后的某个时刻,我希望在运行网络操作之前将其他参数附加到urlRequest
(同时保持其他所有内容不变)。我该怎么做呢?