1

我正在尝试构建QSelectSection in JSON.我正在使用的:

{
   "type":"QSelectSection",         
    "title":"multiselect",            
    "items":[[1, 2, 3]],           
    "multipleAllowed":true            
}

但是当我构建并运行时,我得到了这个错误:

'-[QSelectSection setParentSection:]: unrecognized selector sent to instance 0x9fb2020

是否可以使用 QuickDialog 框架构建多选?或者我做错了什么?

谢谢您的帮助 !

4

1 回答 1

0

正确的格式是:

{
  "type":"QSelectSection",         
  "title":"multiselect",            
  "items":[1, 2, 3],           
  "multipleAllowed":true            
}
于 2013-10-24T12:02:27.090 回答