I am using QuickDialogue for my form building. After following all instruction of http://escoz.com/open-source/quickdialog I am getting an error in my viewcontroller that QRootElement object is undeclared one. I tried declaring it in .h file however it still shows the same.
What is the correct way to use the form builder?
- (void)viewDidLoad
{
[super viewDidLoad];
QRootElement *root = [[QRootElement alloc] init];
root.title = @"Hello World";
root.grouped = YES;
QSection *section = [[QSection alloc] init];
QLabelElement *label = [[QLabelElement alloc] initWithTitle:@"Hello" Value:@"world!"];
[root addSection:section];
[section addElement:label];
UINavigationController *navigation = [QuickDialogController controllerWithNavigationForRoot:root];
[self presentModalViewController:navigation animated:YES];
}