NSDate+formatter.h 331 B

123456789101112131415161718
  1. //
  2. // NSDate+formatter.h
  3. // MSYOUPAI
  4. //
  5. // Created by admin on 2022/3/5.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NSDate (formatter)
  11. // 时间转换为string
  12. -(NSString *)youpaidString:(nullable NSString*)formatterStr;
  13. @end
  14. NS_ASSUME_NONNULL_END