images
ディレクトリ(グループ)を(グループ)に追加したiPhoneアプリケーションがありますResources
。にあるその画像にアクセスしたいimages
。その画像へのパスが必要なので、次のようなコードを作成します。
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"myImage1" ofType:@"png" inDirectory:@"images"];
NSLog(@"%@", imagePath);
結果 :
(null)
私もこのコードを試しました
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"myImage1" ofType:@"png"];
しかし、このコードは私に(null)
結果を与えます。
myImage1
のパスはResources/images/myImage1.png
何が問題なのかわからない。いくつかの修正を提案してください。