26 lines
512 B
Objective-C
26 lines
512 B
Objective-C
//
|
|
// GIGaDateHelper.h
|
|
// MasKTimeCountTime
|
|
//
|
|
// Created by lianxiang on 2018/10/19.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface GIGaDateHelper : NSObject
|
|
|
|
+(NSString *)getNowTimeTimestamp2;
|
|
+(NSDate *)getStartDate;
|
|
+(void)saveSatrtDate;
|
|
+(int)getTimebySubtracting:(NSDate*)Date1 andDate2:(NSDate*)Date2;
|
|
+(void)saveisMaskingflag:(BOOL)masking;
|
|
+(BOOL)isMasking;
|
|
+(void)removeStartDate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|