如何缩小我的图像并在Xcode模拟器上全屏显示?

时间:2014-07-02 11:23:06

标签: ios uiimageview

我在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模拟器也存在同样的问题。

0 个答案:

没有答案