iphone - Quickdialog does not build QpickerElement -


i'm using quickdialog framework. it's awesome framework have strange problem. have json got webservice. working, not build qpickerelements. following warning in console.

 couldn't build element type qpickerelement 

but strange thing. when paste code in demo of framework. works supposed to...

this how load json in app.

 nsstring *jsonsample = data2.form;  nslog(@"json sample %@",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]; 

can me problem?

i assume have quickdialog project embedded yours recommendation in quickdialog webpage, só, click on quickdialog root project, in target click in quickdialog, in right hand side select "build phases", add .m (or whatever want) "compiled sources", add same .h "copy headers"


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -