我在界面构建器中制作了一个大小正确的 UIImageView,并在类文件中连接了插座。如何阻止大 jpg 填满整个屏幕?我希望图像调整大小以适合我在 IB 中制作的框架。
- (void)viewDidLoad {
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"wine" ofType:@"jpg"];
NSData* data = [NSData dataWithContentsOfFile:filePath];
if(data){
photo.image= [[UIImage alloc] initWithData:data];
}
[super viewDidLoad];
}
谢谢。