// // NSUserDefaults+ObjectSubscripting.h // // Created by Tony Arnold on 29/07/12. // Copyright (c) 2012 The CocoaBots. All rights reserved. // #import @interface NSUserDefaults (ObjectSubscripting) - (id)objectForKeyedSubscript:(NSString *)key; - (void)setObject:(id)object forKeyedSubscript:(NSString *)key; @end