如何根据字符串判断主应用程序包中是否存在图像?例如,捆绑包中是否有一个名为 image1.png 的图像?
问问题
360 次
1 回答
2
NSBundle方法:
- (NSString *)pathForResource:(NSString *)name ofType:(NSString *)extension
如果没有找到图像,将返回 nil。
IE
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"image1" ofType@"png"];
if(filePath.length > 0 && filePath != (id)[NSNull null]) {
UIImage *myImage = [UIImage imageWithContentsOfFile:filePath];
}
于 2012-09-12T18:29:46.607 回答