我使用UIPageviewcontroller(滚动类型)创建了一个照片滚动应用程序,它使用viewcontroller来获取图像。该应用程序在iPad和iPad视网膜模拟器中工作正常。但它并没有在iPad视网膜64位和真实设备中显示任何图像。
我的代码是:
UIImageView *background =[[UIImageView alloc] initWithFrame:CGRectMake(0,0,screenHeightPortrait,screenWidthPortrait)];
NSString *imageFile = [[NSBundle mainBundle] pathForResource:self.mainImageLink ofType:nil];
background.image = [UIImage imageWithContentsOfFile:imageFile];
[self.view addSubview:background];
self.mainImageLink是一个NSArray元素。例如" image1.png"。
我试图在SO中找到解决方案并尝试:
image: /Users/my_user/Library/Application Support/iPhone Simulator/7.1-64/Applications/E16A2B0F-F766-41E4-A973-67CA79ED0F9C/myApp.app/images/image1.png
我确保它在复制包资源中并使用Finder找到图像我错过了什么吗?真的很感激任何线索或提示..
非常感谢!
PS: 我使用XCode 5.1.1和SDK iOS 7 + OSX 10.8.5 + MBP 2.5Ghz Core2Duo