我在Xcode中创建了一个基于单一视图的空白iOS应用程序;
将imageView
放入我的故事板;
然后为我的viewDidLoad
更新viewController
,如下所示:
-(void)viewDidLoad {
[super viewDidLoad];
NSString *filePath = [[NSBundle mainBundle] pathForResource: @"Image" ofType: @"jpg"];
NSURL *fileNameAndPath = [NSURL fileURLWithPath: filePath];
CIImage *beginImage = [CIImage imageWithContentsOfURL: fileNameAndPath];
UIImage *newImage = [UIImage imageWithCIImage: beginImage];
self.imageView.image = newImage;
}
无论我在故事板上为imageView
选择什么模式:(AspectFit / AspectFill / Redrew / ...),它都不会在屏幕上显示出来。
如何缩小屏幕尺寸并全屏显示?
iPhone和iPad模拟器也存在同样的问题。