我想用这样的路径在图像中加载uimage
/ var / mobile / Applications / 429E283A-6E89-4BCE-861F-252C5327F711 / Library / Application Support / Students / 43y。 F./1.2.840.113564.3.1.2.180.0.0.90.20081228203734483950/1.2.840.113564.10.1.226230117146661685815524478531105858244/Thumbnail.bmp
我用下面的代码
UIImage* theImage = [UIImage imageNamed:ThumbnailPath];
if (theImage !=nil) {
cell.imageView.image = theImage;
}
else {
NSLog(@"Error");
}
其中ThumbnailPath是路径
但是uiimage总是为零,并且我确定文件存在,任何人都可以为我修复它
最好的祝福
最佳答案
UIImage* theImage = [UIImage imageWithContentsOfFile:ThumbnailPath];
if (theImage !=nil) {
cell.imageView.image = theImage;
}
else {
NSLog(@"Error");
}
希望这可以帮助
关于iphone - 这个初始化有什么问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5879685/