12345678910111213141516171819202122232425262728293031323334 |
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UtilsTools : NSObject
- + (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
|