NSDictionary an Funktion übergeben, um Objekte / Schlüssel hinzuzufügen, wird jedoch in main () leer angezeigt
Ich bin neu in Objective C und habe ein Problem beim Hinzufügen zu meinem NSMutableDictionary. Ich habe eine Thing-Klasse, die die folgende Methode enthält.
-(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;
}
}
}
Aber wenn ich es in meinem main () aufrufe, wird das Wörterbuch immer noch leer angezeigt.
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;
}
Wenn ich die Zählung direkt in meiner addThing-Methode überprüfe, wird "Ich bin nicht leer!" Ich bin mir nicht sicher, was ich falsch mache.