IOS 开发获取本地图片路径及上传

2025-05-29 0 19

1、获取沙盒路径

?

1

2

3

4

5

6

7
NSString *path_document=NSHomeDirectory();

//设置存储文件路径!!!!!!文件路径的名字一定要区分开

NSString *imagePath=[path_document stringByAppendingString:[NSString stringWithFormat:@"/Documents/%@%@%@.png",_shopObj.shopPicture,_shopObj.shopColor,self.shopObj.shopName]];

//写入文件

[UIImagePNGRepresentation(img) writeToFile:imagePath atomically:YES];

//将地址存储到自己设置的Model模型中

self.shopObj.shopPicture=imagePath;

2、读取数据的时候,直接从自己设置文件中读取出来就行了,例子如下:

?

1

2

3

4
NSString *path_document=NSHomeDirectory();

NSString *imagePath=[path_document stringByAppendingString:[NSString stringWithFormat:@"/Documents/%@%@%@.png",_shopObj.shopPicture,_shopObj.shopColor,self.shopObj.shopName]];

UIImage *img=[UIImage imageWithContentsOfFile:imagePath];

cell.imgV.image=img;

顺便说一下设置的根目录的位置:

2,获取Documents目录路径的方法:

?

1

2
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *docDir = [paths objectAtIndex:0];

3,获取Caches目录路径的方法:

?

1

2
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);

NSString *cachesDir = [paths objectAtIndex:0];

4,获取tmp目录路径的方法:

?

1
NSString *tmpDir = NSTemporaryDirectory();

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 IOS 开发获取本地图片路径及上传 https://www.kuaiidc.com/91045.html

相关文章

发表评论
暂无评论