Tôi có một UIImageView và mục tiêu là thu nhỏ nó theo tỷ lệ bằng cách cho nó chiều cao hoặc chiều rộng.
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;
Hình ảnh đã được thay đổi kích thước nhưng vị trí không nằm ở trên cùng bên trái. Cách tiếp cận tốt nhất để nhân rộng hình ảnh / imageView và làm cách nào để sửa vị trí?