我有一个单屏应用程序,您可以在其中找到两个文本字段(对象和键)和一个按钮(应该将两个字符串存储在 NSMutableArray 中。顺便说一句:不要混淆:“merken”是德语,意思是“记住" ;)
我的问题是,我想以这种方式填充我的 NSMutableDictionary,但现在它只能在第一次保存对象和键。
这是我的方法:
-(IBAction)merken:(id)sender {
NSString *currentObject = [[NSString alloc] init];NSString *currentKey = [[NSString alloc] init];
currentObject = [typedObject text];
currentKey = [typedKey text];
[dict setValue:currentObject forKey:currentKey];
//Check if the stings have been added to the Dict.
int checkLengh = [dict count];
NSString * checkString = [[NSString alloc] initWithFormat:@"Das Dict hat %d Zeile(n)", checkLengh];
[checkLabel setText:checkString];
[typedObject resignFirstResponder];
[typedKey resignFirstResponder];
}
有任何想法吗?我整天都在努力...