Al pasar NSDictionary a la función para agregar objetos / claves, pero aparece vacío en main ()

Soy nuevo en Objective C y tengo problemas para agregar a mi NSMutableDictionary. Tengo una clase Thing que contiene el siguiente método.

-(BOOL) addThing:(Thing*)myThing withKey:(NSString*)key inDictionary:(NSMutableDictionary*) myDictionary
{
    if(!myDictionary) { //lazy initialization
       myDictionary = [NSMutableDictionary dictionary];
       [myDictionary setObject:myThing forKey:key];
       return YES;
    } 
    else {
       if(![myDictionary allKeysForObject: _monster]) {
         [myDictionary setObject:record forKey:key];
         return YES;
       }
       else {
         NSLog(@"The username %@ already exists!", _monster);
         return NO;
    }
  }

}

Pero cuando lo llamo en mi main () el diccionario todavía aparece vacío.

int main(int argc, const char * argv[]) {
@autoreleasepool {
    NSMutableDictionary *myDictionary;

    Thing *foo = [Thing thingWithName:@"Frankenstein" andFeature:@"green"];
    [foo addThing:foo withKey:@"foo" inDictionary:myDictionary];

    if([myDictionary count] > 0) {
        NSLog(@"I'm not empty!");
    }
    else {
        NSLog(@"Dictionary is empty");
    }

    //Prints out "Dictionary is empty"

}
return 0;

}

Si cuento la verificación directamente dentro de mi método addThing, imprimirá "¡No estoy vacío!". No estoy seguro de lo que estoy haciendo mal.

Respuestas a la pregunta(2)

Su respuesta a la pregunta