12345678910111213141516171819 |
- //
- // NSDate+BUCommon.h
- // BUFoundation
- //
- // Created by ByteDance on 2022/3/30.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSDate (BUCommon)
- // 零点时间
- + (NSDate *)zeroOfDate;
- @end
- NS_ASSUME_NONNULL_END
|