Webview cambia de tamaño automáticamente a vertical y horizontal en iphone

Soy nuevo en el desarrollo de iPhone. En mi aplicación, quiero mostrar la vista web en el dispositivo con orientación vertical c. También debería admitir la orientación horizontal. Utilicé el siguiente método pero no hay salida esperada.

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{

return (interfaceOrientation == UIInterfaceOrientationPortrait || 

 interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == 

UIInterfaceOrientationLandscapeRight);
}

por favor guíame. Por favor, ayúdame. Gracias

Respuestas a la pregunta(2)

Su respuesta a la pregunta