A simple property list viewer in Objective-C.
ObjectTableViewController *ctrl = [[ObjectTableViewController alloc] initWithPath:[[NSBundle mainBundle] pathForResource:@"Info" ofType:@"plist"]];
ctrl.pullToReload = YES;
ctrl.pressToCopy = YES;
ctrl.showTypeHint = YES;
ctrl.allowSearch = YES;
ctrl.initialRootExpanded = YES;
ctrl.coloredIndentation = YES;
ctrl.indentationWidth = 0;
UINavigationController *navCtrl = [[UINavigationController alloc] initWithRootViewController:ctrl];
[self presentViewController:navCtrl animated:YES completion:nil];