// // RQDouYinManager.h // jiaPei // // Created by 张嵘 on 2022/5/12. // Copyright © 2022 JCZ. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN #define RQ_DOUYIN_MANAGER [RQDouYinManager sharedInstance] @interface RQDouYinManager : NSObject @singleton(RQDouYinManager); @property (nonatomic, readonly, strong) NSString *clientKey; @property (nonatomic, readonly, strong) NSString *clientSecret; /// 初始化 - (void)initDouYinManagerWithApplication:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions; /// 调起登录 - (void)douyinLogin; @end NS_ASSUME_NONNULL_END