Repository URL to install this package:
//
// JSONUtils.h
// DynamicEngine
//
// Created by Mobile3D on 13/02/15.
// Copyright (c) 2015 Mobile3D. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface JSONUtils : NSObject
+ (NSDictionary *) dictionaryFromJSONString:(NSString *) jsonString error:(NSError __autoreleasing**) error;
+ (NSString *) stringFromJSONObject:(id) jsonObject error:(NSError __autoreleasing**) error;
@end