- ベストアンサー
cocoa resources内のファイルを取得
教えて頂けますか? アプリケーション.app/Contents/Resources/内にあるファイルの取得に、 object = [[NSDictionary dictionaryWithContentsOfFile:[[[NSBundle mainBundle]bundlePath]stringByAppendingPathComponent:@"Contents/Resources/hoge.plist"]]retain]; の様にしています。 もっとスマート?カンタンに取得できる方法がありますか? よろしくおねがいします。
- みんなの回答 (2)
- 専門家の回答
質問者が選んだベストアンサー
resourcePath を使えば、少し簡単になります。
その他の回答 (1)
- harawo
- ベストアンサー率58% (3742/6450)
回答No.2
NSBundle Class Reference http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSBundle_Class/Reference/Reference.html 「pathForResource:ofType:」を使うのが、よろしいかと。 例文が載っているので、詳しくはそれを読んでみてください。
質問者
お礼
ありがとうございます!勉強になりました。
お礼
ありがとうございます!ばっちりです。