https://github.com/lessica/objecttableviewcontroller
A simple property list viewer in Objective-C.
https://github.com/lessica/objecttableviewcontroller
debugging objective-c property-list
Last synced: 8 months ago
JSON representation
A simple property list viewer in Objective-C.
- Host: GitHub
- URL: https://github.com/lessica/objecttableviewcontroller
- Owner: Lessica
- Created: 2022-01-26T14:57:48.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-14T05:04:58.000Z (about 2 years ago)
- Last Synced: 2025-06-09T15:12:04.256Z (9 months ago)
- Topics: debugging, objective-c, property-list
- Language: Objective-C
- Homepage:
- Size: 203 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ObjectTableViewController
[](https://github.com/Lessica/ObjectTableViewController/actions/workflows/objective-c-xcode.yml)
A simple property list viewer in Objective-C.
## Usage
```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];
```
## Screenshots