Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. iOS keyboard appears without a reason on app start
Forum Updated to NodeBB v4.3 + New Features

iOS keyboard appears without a reason on app start

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
1 Posts 1 Posters 171 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • SupernaurisS Offline
    SupernaurisS Offline
    Supernauris
    wrote on last edited by Supernauris
    #1

    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

    1 Reply Last reply
    1

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved