我正在使用QuickDialogue進行表單構建。在遵循http://escoz.com/open-source/quickdialog的所有說明之後,我的視圖控制器中出現錯誤,表示QRootElement對象未聲明。我試圖在.h文件中聲明它,但它仍然顯示相同...任何人都可以向我展示使用表單生成器的正確方法嗎?QuickDialogue的實現顯示QRootElement未聲明的標識符
Thanx提前。
- (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];
}
您是否將#導入到您的Prefix.pch文件中? –