NSDictionary+ZGJsonValue.m 342 B

1234567891011121314151617
  1. //
  2. // NSDictionary+ZGJsonValue.m
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 2017/12/26.
  6. // Copyright © 2017年 zhuge. All rights reserved.
  7. //
  8. #import "NSDictionary+ZGJsonValue.h"
  9. @implementation NSDictionary (ZGJsonValue)
  10. - (NSString *)zgStringValueForKey:(NSString *)key {
  11. return [NSString stringWithFormat:@"%@", self[key]];
  12. }
  13. @end