12345678910111213141516171819202122 |
- //
- // NYQRCodeVCManager.h
- // jiaPei
- //
- // Created by Ning.ge on 2025/2/21.
- // Copyright © 2025 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #define NY_NYQRCodeVCManager [NYQRCodeVCManager sharedInstance]
- NS_ASSUME_NONNULL_BEGIN
- @class RQQRCodeViewController;
- @interface NYQRCodeVCManager : NSObject
- @property (nonatomic,strong) RQQRCodeViewController *vc;
- + (instancetype)sharedInstance;
- @end
- NS_ASSUME_NONNULL_END
|