UIImageView가 있고 목표는 높이 또는 너비를 제공하여 비례 적으로 축소하는 것입니다.
UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://farm4.static.flickr.com/3092/2915896504_a88b69c9de.jpg"]]];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
//Add image view
[self.view addSubview:imageView];
//set contentMode to scale aspect to fit
imageView.contentMode = UIViewContentModeScaleAspectFit;
//change width of frame
CGRect frame = imageView.frame;
frame.size.width = 100;
imageView.frame = frame;
이미지 크기가 조정되었지만 위치가 왼쪽 상단에 없습니다. image / imageView 배율을 조정하는 가장 좋은 방법은 무엇이며 위치를 어떻게 수정합니까?