Hi,
there seems to be a bug in WebBrowserComponent on iOS, although it may be an iOS bug. If you create a WebBrowserComponent and view a page on the iPad in landscape orientation (simulator or real device) then a dropdown lists will drop down horixontally, even though the web page is rendered in the correct orientation. This little snippet is enough to demo that
MainContentComponent::MainContentComponent()
{
Rectangle<int> screenRect = Desktop::getInstance().getDisplays().getTotalBounds(true);
setBounds( screenRect );
webBrowser = new WebBrowserComponent;
webBrowser->setBounds(0, 0, getWidth(), getHeight());
addAndMakeVisible(webBrowser);
webBrowser->goToURL("http://www.juce.com/forum");
}
Any ideas?
Using Xcode 5.1.1, iOS 7.1 (simulator & device), JUCE 3.0.5
