1234567891011121314151617 |
- //
- // NSDictionary+ZGJsonValue.m
- // UUTUtils
- //
- // Created by zhuge on 2017/12/26.
- // Copyright © 2017年 zhuge. All rights reserved.
- //
- #import "NSDictionary+ZGJsonValue.h"
- @implementation NSDictionary (ZGJsonValue)
- - (NSString *)zgStringValueForKey:(NSString *)key {
- return [NSString stringWithFormat:@"%@", self[key]];
- }
- @end
|