ZGJsonUtils.h 291 B

12345678910111213141516
  1. //
  2. // ZGJsonUtils.h
  3. // UUTPM
  4. //
  5. // Created by zhuge on 15/1/5.
  6. // Copyright (c) 2015年 UUT. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ZGJsonUtils : NSObject
  10. + (NSString *)dictionaryToString:(NSDictionary *)dict;
  11. + (id)stringToObject:(NSString *)str;
  12. @end