Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. xcode
    Log in to post

    • UNSOLVED QT API changes from Qt 5 (5.12.11) to Qt 6 (6.4.0).
      Mobile and Embedded • ios xcode qvideoframe qt5.12.11 apichanges • • inkfil  

      6
      0
      Votes
      6
      Posts
      191
      Views

      @inkfil At Qt6 all(?) enumerated types have been moved from from a "general, high-level" class/namespace --- like Qt::AlignLeft or QVideoFrame::WriteOnly --- down into a more "specific, low-level" class/namespace --- like Qt::AlignmentFlag::AlignLeft or QVideoFrame::MapMode::WriteOnly. You need to change all your code accordingly. There isn't a definitive list, you just have to find out and do it as necessary. In https://stackoverflow.com/questions/72086632/migrating-to-qt6-pyqt6-what-are-all-the-deprecated-short-form-names-in-qt5 and/or https://pypi.org/project/PyQtEnumConverter/ somebody wrote some kind of converter for Python/PyQt6 for this, maybe it will give you inspiration to understand what has changed.
    • UNSOLVED debugger/lldbbridge.py used with xcode 11.6 issues from Qt Creator 4.13 ,
      Tools • xcode clang lldbbridge issues • • bklove  

      2
      0
      Votes
      2
      Posts
      257
      Views

      Thank you. At least QStrings are shown correctly at the moment (Qt 5.15.2/Xcode 12.5). Don't forget to import the codecs together with the usual imports. import codecs Could not see any differences with the HandleCommand fixes.
    • UNSOLVED How to set a link to a library in the “Link Binary With Libraries” list from a .pro file
      General and Desktop • qt creator ios libraries xcode link • • Wargos  

      4
      0
      Votes
      4
      Posts
      380
      Views

      It does not work with qmake and I would rather search the bug in the lib you link against.
    • SOLVED Can't Build QTWebEngine With Xcode 11.5 on MacOS 10.15.5
      QtWebEngine • qtwebengine macosx xcode building qt • • ChiK  

      2
      0
      Votes
      2
      Posts
      456
      Views

      The following command fixed. sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
    • SOLVED Adding a QWindow to UIKit application on iOS
      Mobile and Embedded • ios xcode objective-c qt 5.10 swift • • eliseev  

      2
      0
      Votes
      2
      Posts
      1043
      Views

      Ok, the problem solved itself with update to Qt 5.11.2 (while running iOS12). Thanks for reading.
    • SOLVED Path to image in xcassets folder (iOS)
      Mobile and Embedded • ios xcode assets • • JRohner  

      4
      0
      Votes
      4
      Posts
      3174
      Views

      Here is the code that works: QString path = QCoreApplication::applicationDirPath() + "/Photo 2014-05-10 11 33 08.jpg"; QPixmap pixmap(path); ui->label->setPixmap(pixmap);
    • UNSOLVED Use Qt app with Apple Watch
      Mobile and Embedded • ios xcode watch • • andershaf  

      8
      1
      Votes
      8
      Posts
      3357
      Views

      Right, I forgot there was the tech preview. So indeed you can grab Qt 5.8.
    • SOLVED Calling Qt-Gui from native iOS Gui & Vice versa
      Mobile and Embedded • ios qt 5.5 xcode show • • ParkerHalo  

      9
      1
      Votes
      9
      Posts
      2714
      Views

      @bogong For me it's normal develop qt (also for mobile application), but in this time I must develop a strange case, I must use a native controller (that it can't be emulate in qt/qml) and from this I must start the qml GUI. It's all ok, I see the qml elements but I can't catch the user interaction, not press button, nothing. I started from Qt project where I added native object-c files, AppDelegate, other native controller, etc.
    • UNSOLVED WARNING: QMAKESPEC does not support multiple BUILDS
      Mobile and Embedded • ios qmake xcode • • DRoscoe  

      3
      0
      Votes
      3
      Posts
      1162
      Views

      Am I the only one having this problem?
    • UNSOLVED App developed on Qt with XCode on iOS rejected by Apple Store team
      Mobile and Embedded • ios xcode apple store • • NGV1  

      3
      0
      Votes
      3
      Posts
      1089
      Views

      @NGV1 seems like the app is crashing for them. So the reason is to figure out why. Don't they provide a stack trace of the crash? Also you can try to upgrade the used Qt version, since a lot of stuff happens during major releases especially in the mobile section.
    • SOLVED Qt 5.5 + iOS + xCode 7.2 - Device not recognised in QtCreator
      Mobile and Embedded • ios xcode • • Nando  

      10
      0
      Votes
      10
      Posts
      2104
      Views

      @SGaist Ohh cool ! Didn't know about that feature.. Thank you :)
    • UNSOLVED UI of my application is weird with Qt 4/5 on OS X 10.11 El Capitan
      General and Desktop • qt5 qt4 xcode el capitan osx 10.11 • • DEADBEEF  

      12
      0
      Votes
      12
      Posts
      3939
      Views

      Did you generate the Xcode project using qmake ?
    • UNSOLVED Incorrect Toolchain with Xcode
      Mobile and Embedded • xcode toolchain • • Rogrog  

      2
      0
      Votes
      2
      Posts
      1077
      Views

      Hi and welcome to devnet, Did you regenerate the Xcode project after deleting Xcode 6.4 ?
    • New: LLDB formatters for Qt types
      Announcements • xcode lldb formatters • • lukeworthtkbt  

      5
      0
      Votes
      5
      Posts
      2251
      Views

      Yeah it seems to be jumping up and down every few minutes, but even when it's up it's super slow. You don't notice it too much when just going to the frontpage of download.qt.io since a single HTML page doesn't take much, but when trying to download Qt itself you'll quickly realize it's not working as intended. https://www.myloweslife.biz/
    • [Solved] iOS, xCode 7 and Qt
      Mobile and Embedded • xcode • • mrdebug  

      9
      0
      Votes
      9
      Posts
      3104
      Views

      Solved by upgrading Qt Creator to 3.5.0 Many thanks.
    • Qt5 coding with XCode 6 (MAC)
      General and Desktop • qt5.5 mac macosx xcode • • Almer_Cz  

      3
      0
      Votes
      3
      Posts
      1607
      Views

      @Almer_Cz said: ...and also create .pro and let qmake to generate XCode project, but this will produce a lot of Mambo Jambo around and won't be handy when something changes. So your looking for a way to create and maintain the Mambo Jambo manually and this will somehow be more handy ?
    • Qt headers in IOS Xcode project. Linking Qt libs.
      Mobile and Embedded • qt5 ios qt5.5 qt5.4 macosx xcode link • • A Former User  

      4
      0
      Votes
      4
      Posts
      2100
      Views

      I'd generate the Xcode project from a .pro file, that way you have everything setup for you
    • iOS: include xCode language (*.lproj) files in Qt project
      Mobile and Embedded • ios deployment xcode • • hamer  

      1
      0
      Votes
      1
      Posts
      804
      Views

      No one has replied

    • GLenum use of undeclared identifier bug in Xcode
      General and Desktop • xcode glenum • • akilone  

      6
      0
      Votes
      6
      Posts
      2226
      Views

      Sorry, I don't know OpenGL well enough to propose you an alternative/workaround to emulate that behavior.
    • How do I configure the Xcode debugger to show Qt objects in a more useful way?
      Tools • debugging xcode • • Ghopper21  

      1
      0
      Votes
      1
      Posts
      896
      Views

      No one has replied

    • Hide OSX menu bar from Qt Application?
      General and Desktop • qt5 osx xcode objective-c • • fhdns  

      2
      0
      Votes
      2
      Posts
      2402
      Views

      Hi, Out of curiosity, can you describe what your application does that it needs all of these elements hidden ?
    • Open UI Dialog from Mac OSX Xcode (for Maya plugin)
      General and Desktop • plugin qt designer cpp xcode includepath • • EarthHobbit  

      2
      0
      Votes
      2
      Posts
      1264
      Views

      Hi and welcome to devnet, What version of Qt are you using ? What exact error message did you get ?
    • Need help with Qt 5.4 and xcode 6.2 on OS X 0.10.2 Yosemite
      Tools • qt 5.4 xcode osx yosemite qt creator 3.0 • • kenchan  

      6
      0
      Votes
      6
      Posts
      26785
      Views

      Thanks anyway Sandy. This is a weird one to be sure.
    • Need help with Qt 5.4 and xcode 6.2 on OS X 0.10.2 Yosemite
      Installation and Deployment • qt 5.4 xcode osx yosemite qt creator 3.0 • • kenchan  

      1
      0
      Votes
      1
      Posts
      612
      Views

      No one has replied

    • Where does XCode takes the Qt-Libraries from
      Mobile and Embedded • ios xcode • • patrikd  

      3
      0
      Votes
      3
      Posts
      840
      Views

      Hi, I deleted the whole build directory. Than I created a new release with QtCreator and opened the xcode project in xcode (there i also tried a clean and build). best, Patrik