通常我會說將項目添加到QCombobox:如何將字符串添加到QCombobox
QCombobox cbb;
cbb.addItem("Hello");
但如果我試試這個,我得到一個錯誤:
QComboBox cbb;
QString * s = new QString("hallo");
cbb.addItem(s);
error: no matching function for call to 'QComboBox::addItem(QString*&)'
我怎樣才能解決這個問題?
有什麼方法可以將項目添加到頂部而不是底部? – Nickpick
你試過'insertItem(0,s)'嗎? –