I loaded a jpg into a UIImageView. The image is oversized to the iPhone screen. How can I resize it to a specific CGRect frame?
UIImageView *uivSplash = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"iPhone-Splash.jpg"]];
[self.view addSubview:uivSplash];
A
UIImageViewis just aUIView, so you can change itsframeproperty.