征服 iOS 开发

加载数据的一些方法----根据路径寻找

2017-03-25  本文已影响1人  胡胡LoL

加载数据的一些方法----根据路径寻找

1.获取项目路径

①.获取应用程序包的根路径
NSString *resourcePath=[[NSBundle mainBundle] resourcePath];
②.图像路径
NSString *path=[resourcePath stringByAppendingPathComponent:@"icon.png"];

2.获取沙盒路径

①.沙盒下的Documents目录
NSString *path=[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/icon.png"];

3.通过路径找对应的图片文件

UIImage *image=[UIImage imageWithContentsOfFile:path];

上一篇下一篇

猜你喜欢

热点阅读