12345678910111213141516171819202122232425262728293031323334 |
- //
- // UtilsTools.h
- // smartRhino
- //
- // Created by armin on 2019/11/1.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- 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
|