NSMutableDictionary+GCKAdditions.h
1 // Copyright 2012 Google Inc.
2 
3 #import <GoogleCast/GCKDefines.h>
4 
5 #import <Foundation/Foundation.h>
6 
7 GCK_ASSUME_NONNULL_BEGIN
8 
15 
22 - (void)gck_setStringValue:(NSString *)value forKey:(NSString *)key;
23 
30 - (void)gck_setIntegerValue:(NSInteger)value forKey:(NSString *)key;
31 
38 - (void)gck_setUIntegerValue:(NSUInteger)value forKey:(NSString *)key;
39 
46 - (void)gck_setDoubleValue:(double)value forKey:(NSString *)key;
47 
54 - (void)gck_setBoolValue:(BOOL)value forKey:(NSString *)key;
55 
56 @end
57 
58 GCK_ASSUME_NONNULL_END
A category that adds some convenience methods to NSDictionary for setting values of various types...
Definition: NSMutableDictionary+GCKAdditions.h:14