如何在IOS中获取本地图片的路径

  介绍

今天就跟大家聊聊有关如何在IOS中获取本地图片的路径,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

1,获取沙盒路径

, NSString  * path_document=NSHomeDirectory ();//设置存储文件路径! ! ! ! ! !文件路径的名字一定要区分开   NSString 才能;* imagePath=[path_document  stringByAppendingString: [NSString  stringWithFormat: @"/文件/% @ % @ % @.png", _shopObj.shopPicture, _shopObj.shopColor, self.shopObj.shopName]];//写入文件   (才能UIImagePNGRepresentation (img), writeToFile: imagePath 自动:是的);//将地址存储到自己设置的模型模型中   self.shopObj.shopPicture才能=imagePath;

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

, NSString  * path_document=NSHomeDirectory ();   NSString 才能;* imagePath=[path_document  stringByAppendingString: [NSString  stringWithFormat: @"/文件/% @ % @ % @.png", _shopObj.shopPicture, _shopObj.shopColor, self.shopObj.shopName]];   UIImage 才能;* img=[UIImage  imageWithContentsOfFile imagePath):;   cell.imgV.image才能=img;

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

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

NSArray  * paths =, NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask,,是的);   NSString  * docDir =, [paths , objectAtIndex: 0];

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

NSArray  * paths =, NSSearchPathForDirectoriesInDomains (NSCachesDirectory, NSUserDomainMask,,是的);   NSString  * cachesDir =, [paths , objectAtIndex: 0];

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

NSString  * tmpDir =, NSTemporaryDirectory ();

看完上述内容,你们对如何在IOS中获取本地图片的路径有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注行业资讯频道,感谢大家的支持。

如何在IOS中获取本地图片的路径