Como dimensionar um UIImageView proporcionalmente?

Eu tenho um UIImageView e o objetivo é reduzi-lo proporcionalmente, dando-lhe uma altura ou largura.

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;

A imagem foi redimensionada, mas a posição não está no canto superior esquerdo. Qual é a melhor abordagem para dimensionar image / imageView e como corrijo a posição?

questionAnswers(17)

yourAnswerToTheQuestion