GC crashes QML-Application
问题 Do not fear! This is not production code. It is just to learn new things about QML! I do not seek 'you shall not do something like this - do it like that.' I am more interested in the internals of QML Consider the following QML-Code import QtQuick 2.4 import QtQuick.Window 2.0 Window { id: root width: 800 height: 600 visible: true GridView { width: 800 height: 200 model: 4000 flow: GridView.FlowTopToBottom delegate: Rectangle { id: myDelegate width: 100 height: 100 border.width: 1 Column {