USIMageView를 비례적으로 확장하는 방법 UIMageView를 사용하고 있는데, 그 목적은 높이 또는 폭 중 하나를 지정하여 비례적으로 축소하는 것입니다. 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 ..