I am trying to develop an application which is geo-sensetive. So, I have written -
(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
// return (interfaceOrientation == UIInterfaceOrientationPortrait);
return YES;
}
I have put different images on that screen and I have to resize it when the view is changing, So,what ca I do?