28 lines
679 B
Objective-C
28 lines
679 B
Objective-C
//
|
|
// ZcqVender.h
|
|
// TreeHole
|
|
//
|
|
// Created by 郑创权 on 2022/10/7.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ZcqVender : NSObject
|
|
|
|
/** 获取顶部视图.*/
|
|
+ (UIViewController *)theTopviewControler;
|
|
/** 获取当前的VC*/
|
|
+ (UIViewController *)getCurrentVC;
|
|
/** 弹簧效果.*/
|
|
+(void)animationAlert:(UIView *)view;
|
|
/** 获取时间戳的yyyy-MM-dd HH:mm:ss*/
|
|
+ (NSString*)getOvertime:(NSString*)mStr;
|
|
/*UIRectCornerTopLeft | UIRectCornerTopRight 指定圆角.*/
|
|
+(CAShapeLayer*)setShapeLayer:(CGRect)rect andWithRectCorner:(UIRectCorner)corners andWithNumCorner:(CGFloat)Cornerfloat;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|