我正在使用QuickDialog
框架。这是一个很棒的框架,但我有一个奇怪的问题。我有一个JSON
从我的Webservice
. 一切正常,只是它不会构建QPickerElements
. 我在控制台中收到以下警告。
Couldn't build element for type QPickerElement
但现在奇怪的事情。当我将代码粘贴到框架的演示中时。一切都像它应该的那样工作......
这就是我在我的应用程序中加载 JSON 的方式。
NSString *jsonSample = data2.form;
NSLog(@"JSON SAMPLE IS %@",jsonSample);
id const parsedJson = [NSJSONSerialization JSONObjectWithData:[jsonSample dataUsingEncoding:NSUTF8StringEncoding] options:NSJSONReadingMutableLeaves error:nil];
QRootElement *root = [[QRootElement alloc] initWithJSON:parsedJson andData:nil];
TestViewController *quickformController = (TestViewController *) [[TestViewController alloc] initWithRoot:root];
[quickformController setScriptId:_event.eve_id];
[self.navigationController pushViewController:quickformController animated:YES];
有人可以帮我解决这个问题吗?