Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct


    Qt World Summit: Early-Bird Tickets

    Unsolved Status Bar Tint and Text Color IOS

    Mobile and Embedded
    1
    1
    324
    Loading More Posts
    • 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.
    • A
      arozon last edited by arozon

      I have had no problems with changing the status bar color on android but ios is giving me quite a pain. Launch Image and Icons i've got figured out.

      I've been able to achieve 2 results yet neither fit my needs. I don't need to have an app fullscreen nor do I plan to provide safe areas for specific devices. Secondly to respect apple guidelines i don't want to override the safearea

      See examples:

      Example 1

      Example 2

      Edit

      After going through a bit of documentation I think i may have found a solution but would still love some expert opinion

      // Only do this for ios
      
      int main() {
       if (QSysInfo::productType() == "ios")  { InitializeMyDelegate();};
      }
      

      Then through my delegate i wrap an Objective-C mm file and there i call basic global ios functions to set the storyboard global tint... A hack if you ask me thats why i would like some help.

      1 Reply Last reply Reply Quote 0
      • First post
        Last post