O Webview redimensiona automaticamente para retrato e paisagem no iphone

Eu sou novo no desenvolvimento do iPhone. No meu aplicativo, quero exibir a exibição da Web no dispositivo com c portrait Orientation.It também deve oferecer suporte à orientação paisagem. Eu usei o método abaixo, mas não há saída esperada.

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{

return (interfaceOrientation == UIInterfaceOrientationPortrait || 

 interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == 

UIInterfaceOrientationLandscapeRight);
}

por favor me guie. por favor me ajude. obrigado

questionAnswers(2)

yourAnswerToTheQuestion