Issue passing NSMutableDictionary to a method
- by roswell
Hello all,
I've got a chunk of code that's passing an NSMutableDictionary (amongst other things) to a method in another class:
[self.shuttle makeAPICallAndReturnResultsUsingMode:@"login" module:@"login" query:credentials];
The NSMutableArray credentials is previously defined like this:
NSMutableDictionary *credentials = [[NSMutableDictionary…