iOS keyboard appears without a reason on app start
Unsolved
Mobile and Embedded
-
Hi,
I am developing an app on iOS, with Qt 6.3.0 and testing with a ten-inch iPad.
As soon as the application gets past the launch screen (static image defined in the apps launch storyboard), the iOS keyboard jumps up and covers nearly half of the screen. I condensed the problem down to the minimal app below.
Has anybody else seen something like this? Ideas on how to debug/fix the issue?
int main(int argc, char **argv) { QApplication app(argc, argv); QWidget * dummyWidget = new QWidget(); dummyWidget->setFocusPolicy(Qt::NoFocus); dummyWidget->show(); dummyWidget->raise(); return app.exec(); }
I left a bug report at https://bugreports.qt.io/browse/QTBUG-102544