Tools.h 782 Bytes
//
//  Tools.h
//  ZXBaseProject
//
//  Created by 张旭 on 2017/1/11.
//  Copyright © 2017年 cnlive. All rights reserved.
//

#import <Foundation/Foundation.h>

@class userInfoModel;

@interface Tools : NSObject


typedef NS_ENUM(NSInteger, ShowMessageType) {//消息背景类型
    ShowMessageTypeClear     = 1,//透明背景
    ShowMessageTypeBlack        ,//半透明背景
};

/**
 弹出页
 
 @param callBackBlock 弹出框消失时回调
 */
+ (void)showBouncedWithModel:(userInfoModel *_Nullable)model callBackBlock:(void (^ _Nullable)(UIView * _Nullable bounceView))callBackBlock;

+ (void)closeBouces;

+ (NSString *_Nullable)dictionaryToJson:(NSDictionary *_Nullable)dic;

+ (NSDictionary *_Nullable)dictionaryWithJsonString:(NSString *_Nullable)jsonString;


@end