Untitled

アプリケーションの中にあるリソースファイルのフルパスを取得するには、[ [ +NSBundle mainBundle ] pathForResource : ofType : inDirectory : ] を使います。

Sampl : リソース格納フォルダのフルパスを取得する

NSBundle* bundle = [ NSBundle mainBundle ];
NSString* path = [ bundle pathForResource : @”Kero” // ファイル名
ofType : @”png” // 拡張子
inDirectory : @”” ]; // サブフォルダ名