フォームの作成に QuickDialogue を使用しています。http://escoz.com/open-source/quickdialogのすべての指示に従った後、ビューコントローラーで QRootElement オブジェクトが宣言されていないというエラーが発生します。.h ファイルで宣言しようとしましたが、それでも同じことが表示されます。
フォームビルダーの正しい使い方は?
- (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];
}