我的应用程序中有奇怪的行为。在我的应用程序中,我正在使用下面的代码从资源文件夹中获取图像。工作正常,但如果我连续一小时后测试我的应用程序,我没有从资源文件夹中获取任何图像然后在我的所有视图中没有背景图像。 ..
[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"box_s3_landscape" ofType:@"png"]]
答案 0 :(得分:1)
[UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"box_s3_landscape" ofType:@"png"]]
这行代码不会缓存您的图像。
尝试使用[UIImage imageNamed@""];
答案 1 :(得分:0)
你在模拟器中运行吗? Resources / iphone目录应该可以正常工作。这是仅限模拟器的问题,已为resolved for 1.8.0