Hi
iOS project I have added a file abg.jpg, Now I want to know the path of the image file when installed in iOS.
Pl let's know the code.
Thanks
Hi,
You can use following code:
NSString *filePath=[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"abc.jpg"]; NSLog(@"%@",filePath);
Thanks