2つのテキストフィールド(オブジェクトとキー)とボタン(2つの文字列を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];
}
何か案は?私は一日中それに取り組んできました...