Deploying to mobile platforms
Apart from platforms such as Windows, Linux, and macOS, mobile platforms do hold equal importance. There are many developers who would like to deploy their applications to mobile platforms. Let's see how that's done. We will cover two major platforms, they are, iOS and Android.
iOS
Deploying Qt applications on iOS is really simple and easy. Just like we did previously for macOS, you need to first install Xcode
on your development PC:

Then, restart Qt Creator. It should now detect the existence of Xcode
, and it will then automatically set the compiler settings for you:

After that, just plug in your iPhone and hit theRun
button!
Building iOS applications on Qt is really that easy. However, distributing them is not. This is because iOS is a very closed ecosystem, just like a walled garden. You are not only required to register as an app developer with Apple, you also need to code sign your iOS applications before you're able to distribute it to your users. There is...