Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vipera-npm-registry / com.vipera.de.foundation.foo   js

Repository URL to install this package:

Version: 1.0.1 

/ src / ios / DECommons.framework / Headers / JSONUtils.h

//
//  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