मेरे पास एक 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;
छवि को आकार नहीं मिला, लेकिन स्थिति शीर्ष पर नहीं है। स्केलिंग इमेज / छवि दृश्य के लिए सबसे अच्छा तरीका क्या है और मैं स्थिति को कैसे सही करूं?