有什么办法用字符串数据加载QQuickView
吗?
据我所知,只有void QQuickView::setSource(const QUrl & url)
。
我可以用字符串数据加载QQmlComponent
,但是现在如何将该组件分配给QQuickView
呢?
最佳答案
您可以在创建QQuickView
时传递QQmlComponent
引擎:
QQmlComponent component(view->engine(), QUrl("path/to/file.qml"));