轻松浏览JSON文件的内容。
SEJSONViewController已在iOS 5上进行了测试,需要ARC。在MIT许可证下发布。
打开包含示例应用和测试的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.h
和SEJSONViewController.m
文件添加到您的项目中,或者如果您使用CocoaPods,请将SEJSONViewController
添加到Podfile中。