An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# ObjectTableViewController

[![Xcode - Build and Analyze](https://github.com/Lessica/ObjectTableViewController/actions/workflows/objective-c-xcode.yml/badge.svg)](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