- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在玩 imageView 并且有方法 [imageWithContentsOfFile];但实际上它运行后没有显示任何内容。在代码下方,有 [imageNamed:] 方法,它照常工作。有任何想法吗?谢谢,
#import "ViewController2.h"
@interface ViewController2 ()
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
@end
@implementation ViewController2
- (BOOL)prefersStatusBarHidden
{
return YES;
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
// just fugly don't do it
// self.navigationItem.titleView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"stanford"]];
UIBarButtonItem *shareItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:nil];
UIBarButtonItem *cameraItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera target:self action:nil];
NSArray *actionButtonItems = @[shareItem, cameraItem];
self.navigationItem.rightBarButtonItems = actionButtonItems;
NSString *imgPath =[[NSBundle mainBundle] pathForResource:@"google" ofType:@"png"];
self.imageView.image = [UIImage imageWithContentsOfFile:imgPath];
// self.imageView.image = [UIImage imageNamed:@"google"];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
我想问题是 pathForResource 方法无法正常工作......
最佳答案
如果您的目标是 iOS 7+,并使用 Assets 目录(看起来您正在使用它,因为您在其中一条评论中指定了 images.xcassets),Xcode 5 现在会将 Assets 放入新的文件格式.所有 Assets 的 1 个文件。这意味着您无法使用 imageWithContentsOfFile:
直接访问该文件。这也是 pathForResource:ofType:
不返回路径的原因。
如果您需要直接访问该文件,您可以将其作为普通图像包含在 Assets 目录之外。
您还应该问问自己是否需要直接访问该文件。在大多数情况下,您可以使用 imageNamed:
。这也为您提供了图像的自动缓存并可以提高性能。
关于ios - pathForResource 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21823038/
我有问题 NSString *filePaht = [[NSBundle mainBundle] pathForResource:(NSString *)name ofType:(NSString *
我知道这听起来很奇怪,但是是否可以对 FileName 参数使用通配符? NSBundle.mainBundle().pathForResource(theFileName, ofType: "csv
我有 2 种方法,一种用于将数组保存到文件,另一种用于从文件加载数组,但是当我尝试读取数组时,没有任何反应,就像数组是空的一样。我的代码: - (IBAction)write:(id)sender {
我已将我的 json 文件 (targetJson) 放在 json_container 文件夹中。但是 NSBundle 无法使用“inDirectory”读取。 文件位置: projectName
我在玩 imageView 并且有方法 [imageWithContentsOfFile];但实际上它运行后没有显示任何内容。在代码下方,有 [imageNamed:] 方法,它照常工作。有任何想法吗
我将一个 mp4 格式的文件复制到我的 XCode 中。命名为abc.mp4 NSString *filePath = [[NSBundle mainBundle] pathForResource:@
我看到很多关于 [NSBundle MainBundle] pathForResource 的问题(是否使用 inDirectory),但我的情况似乎有所不同。 我的问题是:是的,如果没有本地化,它对
我有两个文件,都命名为 GoogleService-Info.plist。一个在文件夹 Resources -> Staging 中,另一个在文件夹 Resources -> Production 中
我在复制包资源下列出了 images.xcassets,在尝试在 images.xcassets 中添加路径之前,我确实尝试只声明文件名本身:MSB_big_icon。 谁能告诉我我做错了什么? NS
我有一个在 Xcode6 中运行良好的 Swift 文件。当我升级到 Xcode7 时,我现在收到阻止程序编译的错误。下面是不起作用的代码片段。我收到的错误只是指出“无法找到接受提供的参数的‘Path
我有一个 iPhone 应用程序需要本地化。字符串没有问题,但是,我在资源方面遇到了问题:我需要加载本地化的 HTML 页面。这些文件类似于:presentation.htm这些文件被添加到项目中,并
我的应用程序中有一堆目录和文件,例如 images/misc/mainmenu_background. .我在“iPad Simulator 3.2”中运行以下代码: NSString *images
我尝试直接打开文件,例如 fopen("/test.txt","w+");它可以在模拟器上运行,但不能在 iPhone 上运行。 然后我尝试了这个: NSString *path = [[NSBund
我想从 WebView 中的资源加载 html 文件。 在我拥有的资源中: 测试.html 测试文件夹->test.html 此代码完美运行: [[webview1 mainFrame] loadRe
所以我只是想通过一些在线视频类(class)来进入 iOS 编程。问题是,这些不是 Swift 3 的最新版本。 在我目前的项目中,需要使用以下命令通过 NSBundle-Framework 导入声音
我想不出关于 pathForResource 是如何工作的任何韵律或原因……或者更恰本地说,不是。 我的应用程序中有一堆 nib,它们都在/Build Phases/Copy Bundle Resou
在我的代码中我想打开一个html文件,所以添加了下面这行代码: NSString* path = [[NSBundle mainBundle] pathForResource:@"cheese"ofT
我的项目中有图像(仅 iPhone 支持,iPad 不支持)。图片在一个组下,而不是在 images.xcassets 下。 我想对所有 iPhone 使用相同的图像,除了 6 Plus 的 @3x,
目前我尝试设置一个简单播放视频的小应用程序(只为我的女儿),但它总是在“路径”上崩溃 import UIKit import MediaPlayer var moviePlayer : MPMovie
在 iOS 6 上,这段代码工作正常: - (NSString*)cLocalImageName { [self willAccessValueForKey:@"cLocalImageNam
我是一名优秀的程序员,十分优秀!