Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
instanceof QStringList
-
Hi,
How can I check object type (instanceof or w/e) of QStringList in QML?
Array.isArray(obj) doesn't work.
-
@Montjet Hi,
This is working for me
if(obj instanceof Array) //Array OK else //Not array
How is your QStringList instance accessed from QML ? Is it exposed as a property ?