// // UtilsTools.h // smartRhino // // Created by armin on 2019/11/1. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface UtilsTools : NSObject /** UIModalPresentationStyle 显示方式 */ + (UIModalPresentationStyle)modalPresentationStyle:(UIModalPresentationStyle)modalPresentationStyle; + (UIWindow*)getWindow; + (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size; + (UIImage*) imageWithColor:(UIColor*)color andHeight:(CGFloat)height; //计算聊天消息的高 不是公用 + (CGFloat)calculationHeightWithContent:(NSString *)content; //计算聊天消息的宽 不是公用 + (CGFloat)calculationWidthWithContent:(NSString *)content; @end NS_ASSUME_NONNULL_END