ably-cocoa/Source/ARTNSMutableDictionary+ARTD...

10 lines
261 B
Objective-C

#import "ARTNSMutableDictionary+ARTDictionaryUtil.h"
@implementation NSMutableDictionary (ARTDictionaryUtil)
- (void)addValueAsURLQueryItem:(NSString *)value forKey:(NSString *)key {
self[key] = [NSURLQueryItem queryItemWithName:key value:value];
}
@end