Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリの plist ファイルから plist ファイルを読み取る方法を教えてください。
ありがとう
方法で入手できますarrayWithContentsOfFile:。ファイルが必要filePathです。.plist以下の例を参照してください:-
arrayWithContentsOfFile:
filePath
.plist
NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"PlistFileName" ofType:@"plist"]; NSArray *array = [NSArray arrayWithContentsOfFile:plistPath];