I have a NSMutableURLRequest that has been created like so:
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:<my url>];
urlRequest = [httpClient requestWithMethod:<my method>
path:<my uri>
parameters:<my parameters>];
At some point later in my program, I wish to append additional parameters to the urlRequest
(while keeping everything else unchanged) before running the network operation. How would I go about doing this?