123456789101112131415161718 |
- //
- // NSDate+formatter.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/5.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSDate (formatter)
- // 时间转换为string
- -(NSString *)youpaidString:(nullable NSString*)formatterStr;
- @end
- NS_ASSUME_NONNULL_END
|