NYQRCodeVCManager.h 444 B

12345678910111213141516171819202122
  1. //
  2. // NYQRCodeVCManager.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2025/2/21.
  6. // Copyright © 2025 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define NY_NYQRCodeVCManager [NYQRCodeVCManager sharedInstance]
  10. NS_ASSUME_NONNULL_BEGIN
  11. @class RQQRCodeViewController;
  12. @interface NYQRCodeVCManager : NSObject
  13. @property (nonatomic,strong) RQQRCodeViewController *vc;
  14. + (instancetype)sharedInstance;
  15. @end
  16. NS_ASSUME_NONNULL_END