我有一个名为 tw_topic 的 QTableWidget。它不是空的。在另一个函数中,我需要项目的文本。
代码 :
for(int i = ui->tw_topic->rowCount(); i >= 0; i--)
{
//should return the first item of the first column
const QString itm = ui->tw_topic->item(i, 0)->text();
//Here I will do some other stuff...
}
不知何故,它在它被初始化的时候崩溃了,我不知道为什么。