我正在尝试构建我正在使用的QSelectSection in JSON.:
{
"type":"QSelectSection",
"title":"multiselect",
"items":[[1, 2, 3]],
"multipleAllowed":true
}但是当我构建并运行时,我得到了这个错误:
'-[QSelectSection setParentSection:]: unrecognized selector sent to instance 0x9fb2020是否可以使用QuickDialog框架构建多选?或者我做错了什么?
谢谢你的帮助!
发布于 2013-10-24 20:02:27
正确的格式是:
{
"type":"QSelectSection",
"title":"multiselect",
"items":[1, 2, 3],
"multipleAllowed":true
}https://stackoverflow.com/questions/18693218
复制相似问题