UIImageView在模拟器上加载文件但在设备上没有?

时间:2009-11-15 01:16:01

标签: iphone objective-c uiimageview

这会将图像加载到模拟器上,但不会加载到设备上:

    UIImageView *splashImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SplashPH.png"]];

[self.view addSubview:splashImage];

任何帮助赞赏//:)

1 个答案:

答案 0 :(得分:1)

未经验证,但您可能希望使用NSBundle pathForResource:ofType:来电 - 请参阅How to fopen() on the iPhone?