ios - 将 UIImage 保存在应用程序路径中
<p><p>(对不起我的英语)</p>
<p>我需要将图像保存在应用程序路径中,然后在 ImageView 上加载图像。</p>
<p>获取应用路径:</p>
<pre><code>NSString * imagePath = NSHomeDirectory();
imagePath = ;
</code></pre>
<p>之后,保存图片:</p>
<pre><code>NSData *imageData = UIImagePNGRepresentation(self.imageView.image);
</code></pre>
<p>加载保存在应用路径上的图片</p>
<pre><code>self.imageSaved.image = ;
</code></pre>
<p>问题是图像没有保存到路径中</p>
<p>问候</p>
<p><strong>编辑:</strong></p>
<p>问题解决了,只需要修改文件路径</p>
<pre><code>;
</code></pre>
<p>感谢您的回答。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code> NSString *imagePath = NSHomeDirectory();
imagePath = ;
</code></pre>
<p>或</p>
<pre><code> imagePath = ;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 将 UIImage 保存在应用程序路径中,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9995993/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9995993/
</a>
</p>
页:
[1]