私はアプリのバージョンを取得して保存するためにこのコードを持っていますnsdictionary
:
NSString *Version=[NSString stringWithFormat:@"%@",[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
NSLog(@"VERSION%@",Version); //prints the right thing
NSMutableDictionary *dic;
[dic setValue:Version forKey:@"version"]; //crash
[dic setValue:Errors forKey:@"errors"]; //work
クラッシュ時に発生するエラーは次のとおりです。
setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key version
このエラーを特定するのを手伝ってもらえますか?
どうもありがとう 。