// // NSDictionary+RKAdditions.h // RestKit // // Created by Blake Watters on 9/5/10. // Copyright 2010 Two Toasters. All rights reserved. // #import @interface NSDictionary (RKAdditions) /** * Creates and initializes a dictionary with key value pairs, with the keys specified * first instead of the objects. */ + (id)dictionaryWithKeysAndObjects:(id)firstKey, ... NS_REQUIRES_NIL_TERMINATION; @end