SEJSONViewController 0.2.0

SEJSONViewController 0.2.0

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布时间最后发布2014年12月

Sérgio Estêvão 维护。



  • 作者:
  • Sérgio Estêvão

轻松浏览JSON文件的内容。

SEJSONViewController已在iOS 5上进行了测试,需要ARC。在MIT许可证下发布。

示例

Screenshot

打开包含示例应用和测试的Xcode项目。

用法

    // Initialize the view controller
    SEJSONViewController * jsonViewController = [[SEJSONViewController alloc] init];

    // Read the JSON data
    id data = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfURL:[[NSBundle mainBundle] URLForResource:@"data" withExtension:@"json"]] options:NSJSONReadingAllowFragments error:nil];

    // set the data to browse in the controller
    [jsonViewController setData:data];

    // display it inside a UINavigationController
    [[UINavigationController alloc] initWithRootViewController:jsonViewController ];

请参阅头文件以获取完整的文档。

安装

只需将SEJSONViewController.hSEJSONViewController.m文件添加到您的项目中,或者如果您使用CocoaPods,请将SEJSONViewController添加到Podfile中。