আমার একটি ইউআইআইমেজভিউ রয়েছে এবং এটির উচ্চতা বা প্রস্থকে দিয়ে আনুপাতিকভাবে এটি কমিয়ে আনার উদ্দেশ্য।
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;
চিত্রটি পুনরায় আকার দিয়েছে তবে অবস্থানটি শীর্ষে বামে নেই। স্কেলিং ইমেজ / ইমেজভিউয়ের সেরা পদ্ধতির কী এবং আমি কীভাবে অবস্থানটি সংশোধন করব?