私は "病院"と呼ばれるplistを作成しました。最初の行は3つの項目を文字列として持つ配列として挿入されました。私のコードで間違って何plists - iOSの開発(NSString)
:
NSArray *hospitals = [[NSArray alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Hospitals" ofType:@"plist"]];
NSString *first = [[NSString alloc] initWithFormat:@"%@", [hospitals objectAtIndex:0]];
NSLog(@"%@",first);
これは結果として私(null)を与えています!
タイトル。 –