RQDouYinManager.h 666 B

12345678910111213141516171819202122232425
  1. //
  2. // RQDouYinManager.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/5/12.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. #define RQ_DOUYIN_MANAGER [RQDouYinManager sharedInstance]
  11. @interface RQDouYinManager : NSObject <WXApiDelegate>
  12. @singleton(RQDouYinManager);
  13. @property (nonatomic, readonly, strong) NSString *clientKey;
  14. @property (nonatomic, readonly, strong) NSString *clientSecret;
  15. /// 初始化
  16. - (void)initDouYinManagerWithApplication:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;
  17. /// 调起登录
  18. - (void)douyinLogin;
  19. @end
  20. NS_ASSUME_NONNULL_END