NSString+CNLiveExtension.h 465 Bytes
//
//  NSString+CNLiveExtension.h
//  CNLiveCommonCategory
//
//  Created by 张旭 on 2018/9/26.
//  Copyright © 2018年 cnlive. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface NSString (CNLiveExtension)

//判断是否为空字符串
- (BOOL)isEmptyString;

//判断是否为空字符串当去除换行和空格后
- (BOOL)isEmptyByTrimStr;

//把格式化的JSON格式的字符串转换成字典
- (NSDictionary *)jsonToDictionary;

@end