Михаиллл
June 29, 2019, 8:53 p.m.

QML не работает на iOS

Добрый день.
Сделал проект на QML. В Windows, Android, MacOS все работает, но на iOS появляется только фон и не загружаются кнопки.
Скажите пожалуйста, почему такое может быть?
Ниже код странички, которая загружается первой:
main.qml:

  1. import QtQuick 2.9
  2. import QtQuick.Window 2.2
  3.  
  4. Window {
  5. visible: true
  6. width: 400
  7. height: 600
  8. title: qsTr("Psychic Training")
  9.  
  10. color: "#cffff8"
  11.  
  12. /
  13. Connections
  14. {
  15. target: dataWorking
  16. }
  17.  
  18. Loader
  19. {
  20. id: loader
  21. anchors.fill: parent
  22. source: "Page0.qml"
  23. }
  24. }

Page0.qml:
import QtQuick 2.4
import QtQml 2.12

Page0Form {

  1. pag0Label1.text: "Victories: "+ dataWorking.getWinProcent() + "%"
  2.  
  3. page0Button6.onClicked:
  4. {
  5. dataWorking.toZero()
  6. dataWorking.setRandomNamber(1,5)
  7. loader.source = "Page7.qml"
  8. }
  9. page0Button5.onClicked:
  10. {
  11. dataWorking.toZero()
  12. dataWorking.setRandomNamber(1,9)
  13. loader.source = "Page6.qml"
  14. }
  15. page0Button4.onClicked:
  16. {
  17. dataWorking.toZero()
  18. dataWorking.setRandomNamber(1,4)
  19. loader.source = "Page5.qml"
  20. }
  21. page0Button3.onClicked:
  22. {
  23. loader.source = "Page4.qml"
  24. dataWorking.toZero()
  25. dataWorking.setRandomNamber(1,2)
  26. }
  27. page0Button2.onClicked:
  28. {
  29. dataWorking.toZero()
  30. dataWorking.setRandomNamber(1,9)
  31. loader.source = "Page3.qml"
  32. }
  33. page0Button1.onClicked:
  34. {
  35. dataWorking.toZero()
  36. dataWorking.setRandomNamber(1,4)
  37. loader.source = "Page2.qml"
  38. }
  39. page0Button0.onClicked:
  40. {
  41. dataWorking.toZero()
  42. dataWorking.setRandomNamber(1,2)
  43. loader.source = "Page1.qml"
  44. }

}
Page0Form.ui.qml:

  1. import QtQuick 2.4
  2. import QtQuick.Controls 2.4
  3. import QtQuick.Controls.Styles 1.4
  4.  
  5. Item {
  6. id: element
  7. width: 400
  8. height: 600
  9. property alias page0Button6: page0Button6
  10. property alias page0Button5: page0Button5
  11. property alias page0Button4: page0Button4
  12. property alias page0Button3: page0Button3
  13. property alias page0Button2: page0Button2
  14. property alias page0Button1: page0Button1
  15. property alias page0Button0: page0Button0
  16. property alias pag0Label1: pag0Label1
  17.  
  18.  
  19. Button {
  20. id: page0Button0
  21. y: parent.height * 0.16
  22. width: parent.width * 0.3
  23. height: parent.height * 0.08
  24. text: qsTr("1 of 2 colors") //"1 из 2 цветов"
  25. anchors.left: parent.left
  26. anchors.leftMargin: parent.width * 0.14
  27. //autoRepeat: false
  28. //display: AbstractButton.TextBesideIcon
  29.  
  30. background: Rectangle {
  31. implicitWidth: 90
  32. implicitHeight: 30
  33. opacity: enabled ? 1 : 0.3
  34. color: "#e4e4ff"
  35. border.color: "black"
  36. border.width: 1
  37. radius: 4
  38. }
  39. }
  40.  
  41. Button {
  42. id: page0Button3
  43. x: 240
  44. y: parent.height * 0.16
  45. width: parent.width * 0.3
  46. height: parent.height * 0.08
  47. text: qsTr("1 acorn of 2")
  48. anchors.right: parent.right
  49. anchors.rightMargin: parent.width * 0.14
  50.  
  51. background: Rectangle {
  52. implicitWidth: 90
  53. implicitHeight: 30
  54. opacity: enabled ? 1 : 0.3
  55. color: "#e4e4ff"
  56. border.color: "black"
  57. border.width: 1
  58. radius: 4
  59. }
  60. }
  61.  
  62. Button {
  63. id: page0Button1
  64. y: parent.height * 0.31
  65. width: parent.width * 0.3
  66. height: parent.height * 0.08
  67. text: qsTr("1 of 4 colors")
  68. anchors.left: parent.left
  69. anchors.leftMargin: parent.width * 0.14
  70.  
  71. background: Rectangle {
  72. implicitWidth: 90
  73. implicitHeight: 30
  74. opacity: enabled ? 1 : 0.3
  75. color: "#e4e4ff"
  76. border.color: "black"
  77. border.width: 1
  78. radius: 4
  79. }
  80. }
  81.  
  82. Button {
  83. id: page0Button4
  84. x: 240
  85. y: parent.height * 0.31
  86. width: parent.width * 0.3
  87. height: parent.height * 0.08
  88. text: qsTr("1 acorn of 4")
  89. anchors.right: parent.right
  90. anchors.rightMargin: parent.width * 0.14
  91.  
  92. background: Rectangle {
  93. implicitWidth: 90
  94. implicitHeight: 30
  95. opacity: enabled ? 1 : 0.3
  96. color: "#e4e4ff"
  97. border.color: "black"
  98. border.width: 1
  99. radius: 4
  100. }
  101. }
  102.  
  103. Button {
  104. id: page0Button2
  105. y: parent.height * 0.46
  106. width: parent.width * 0.3
  107. height: parent.height * 0.08
  108. text: qsTr("1 of 9 colors")
  109. anchors.left: parent.left
  110. anchors.leftMargin: parent.width * 0.14
  111.  
  112. background: Rectangle {
  113. implicitWidth: 90
  114. implicitHeight: 30
  115. opacity: enabled ? 1 : 0.3
  116. color: "#e4e4ff"
  117. border.color: "black"
  118. border.width: 1
  119. radius: 4
  120. }
  121. }
  122.  
  123. Button {
  124. id: page0Button5
  125. x: 240
  126. y: parent.height * 0.46
  127. width: parent.width * 0.3
  128. height: parent.height * 0.08
  129. text: qsTr("1 acorn of 9")
  130. anchors.right: parent.right
  131. anchors.rightMargin: parent.width * 0.14
  132.  
  133. background: Rectangle {
  134. implicitWidth: 90
  135. implicitHeight: 30
  136. opacity: enabled ? 1 : 0.3
  137. color: "#e4e4ff"
  138. border.color: "black"
  139. border.width: 1
  140. radius: 4
  141. }
  142. }
  143.  
  144. Button {
  145. id: page0Button6
  146. x: 150
  147. y: parent.height * 0.61
  148. width: parent.width * 0.3
  149. height: parent.height * 0.08
  150. text: qsTr("Zener cards")
  151. anchors.horizontalCenter: parent.horizontalCenter
  152.  
  153. background: Rectangle {
  154. implicitWidth: 90
  155. implicitHeight: 30
  156. opacity: enabled ? 1 : 0.3
  157. color: "#e4e4ff"
  158. border.color: "black"
  159. border.width: 1
  160. radius: 4
  161. }
  162. }
  163.  
  164. Label {
  165. id: pag0Label0
  166. y: parent.height * 0.03
  167. width: parent.width * 0.7
  168. height: parent.height * 0.08
  169. horizontalAlignment: Text.AlignHCenter
  170. text: qsTr("Psychic Training")
  171. anchors.horizontalCenter: parent.horizontalCenter
  172. font.pointSize: 18
  173. }
  174.  
  175. Label {
  176. id: pag0Label1
  177. y: parent.height * 0.78
  178. width: parent.width * 0.7
  179. height: parent.height * 0.08
  180. horizontalAlignment: Text.AlignHCenter
  181. text: qsTr("Victories: ")
  182. anchors.horizontalCenter: parent.horizontalCenter
  183. font.pointSize: 19
  184. }
  185. }
  186.  
  187.  
  188.  
  189. /*##^## Designer {
  190. D{i:1;anchors_x:58}D{i:5;anchors_x:58}D{i:9;anchors_x:58}
  191. }
  192. ##^##*/
2

Do you like it? Share on social networks!

4
Михаиллл
  • June 30, 2019, 3:09 p.m.

Может быть дело в этом:

  1. Loader
  2. {
  3. id: loader
  4. anchors.fill: parent
  5. source: "Page0.qml"
  6. }

Может быть нужны другие переходы?

    Михаиллл
    • June 30, 2019, 6:47 p.m.

    Проблемма в

    1. import QtQuick.Controls.Styles 1.4

    Скажите пожалуйста, почему такое может быть?

      Evgenii Legotckoi
      • July 1, 2019, 12:47 p.m.
      • The answer was marked as a solution.

      Это стили для версии QtQuick.Controls 1. Они устарвешие. Уберите данный импорт и вообще не используйте первые контролы, только вторая версия. Не стоит мешать версии контролов в проекте.

        Михаиллл
        • July 1, 2019, 3:15 p.m.

        Убрал эту строчку и все заработало, спасибо.

          Comments

          Only authorized users can post comments.
          Please, Log in or Sign up
          • Last comments
          • AK
            April 1, 2025, 11:41 a.m.
            Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
          • Evgenii Legotckoi
            March 9, 2025, 9:02 p.m.
            К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
          • VP
            March 9, 2025, 4:14 p.m.
            Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
          • ИМ
            Nov. 22, 2024, 9:51 p.m.
            Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
          • Evgenii Legotckoi
            Oct. 31, 2024, 11:37 p.m.
            Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup