こんな感じで書ける。
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];これがこうなる。
簡単。
これまで書いてきたコードがたまってきたので似たようなライブラリを作ろうかと思っていた矢先に見つけた。作る前で良かった。。
カスタマイズもできてこんなのも作れるらしい。
Responses
Leave a Response