ios - 如何使用 NSBundle 从指定的 PATH 或文档目录中获取图像
<p><p>我做了很多研究来找出以下代码的工作方式之间的区别。
当我试图从 PATH 使用 NSBundle 指定的文档目录中获取图像并将其显示在 ImageView 中时。</p>
<p>类型 1:
此代码工作正常,能够检索图像并显示:</p>
<pre><code>NSString *inputPath= @"/Users/abc/Library/Application Support/iPhone Simulator/6.0/Applications/ADD46F96-333A-46BF-8291-FABD1BD7C389/Documents/colour.png";
NSString *jjj=;
NSString *hhhhh=[stringByDeletingPathExtension];
NSString *bivivik=;
NSString *imagePATH=;
theImage=;
mImageDisplayView.image=theImage;
</code></pre>
<p>类型 2:
但是如果我尝试如下代码。不获取图像并显示空值</p>
<pre><code>NSString* imagepath = [bundlePath];
theImage=;
mImageDisplayView.image=theImage;
</code></pre>
<p>我的 TYPE 2 代码有什么问题。有没有其他方法可以像我在 TYPE 2 方法中尝试的那样获取图像。请帮助我</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>尽管上面的代码在一个实例中有效,但两个代码片段都是错误的,因为它们无法读取设备上的文件。原因是,您正在使用模拟器能够找到的 MAC 中的绝对路径,但在设备上不存在。 </p>
<p>使用 <code></code> 从应用程序包中读取文件,</p>
<pre><code>[ pathForResource:@"imageName" ofType:@"png"];
</code></pre>
<p>要从应用程序的文档目录中读取文件,请使用此代码段,</p>
<pre><code>NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *filePath = [ stringByAppendingPathComponent:@"Myfile.png"];
UIImage *image = [ initWithContentsOfFile:filePath];
</code></pre>
<hr/>
<p><strong>编辑</strong></p>
<p>如果您有一个包含图像文件的单独包,则要从该包中读取,请使用此代码段。假设这个包在文档目录中,</p>
<pre><code>NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *bundlePath = [ stringByAppendingPathComponent:@"MyBundle.bundle"];
NSBundle *myBundle = ;
NSString* imagePath = ;
UIImage *image = [ initWithContentsOfFile:imagePath];
</code></pre>
<p>希望有帮助!</p></p>
<p style="font-size: 20px;">关于ios - 如何使用 NSBundle 从指定的 PATH 或文档目录中获取图像,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/18573163/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/18573163/
</a>
</p>
页:
[1]