菜鸟教程小白 发表于 2022-12-13 06:54:06

ios - 无法从 iPhone 文档目录位置中的已保存文件重新加载 UIImage


                                            <p><p>我正在制作一个将文件保存到 iPhone 文档目录的应用程序,然后当重新加载 ViewController 时,它将从同一位置获取并显示它。但它并没有获取它并显示它。</p>

<p>我正在使用以下方法保存图像:</p>

<pre><code>void UIImageWriteToFile(UIImage *image, NSString *fileName)
{
    NSArray *dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentDirectoryPath = dirPaths;
    NSString *filePath = ;

    NSData *imageData = UIImagePNGRepresentation(image);
    ;
}
</code></pre>

<p>我正在尝试使用以下代码从 viewDidLoad 方法中调用我保存的图像:</p>

<pre><code>    NSArray *dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentDirectoryPath = dirPaths;

    NSString *fileName = ;

    NSString *filePath = ;
    ];
</code></pre>

<p>但是,它没有显示我的图像。谁能帮助我并告诉我哪里出错了。我是 iOS 开发新手。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>替换这一行:<code>];</code></p>

<p>有了这个:</p>

<pre><code>UIImage *image = [ initWithContentsOfFile:filePath];
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法从 iPhone 文档目录位置中的已保存文件重新加载 UIImage,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22443265/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22443265/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法从 iPhone 文档目录位置中的已保存文件重新加载 UIImage