12345678910111213141516171819202122232425 |
- //
- // RQDouYinManager.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/5/12.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- #define RQ_DOUYIN_MANAGER [RQDouYinManager sharedInstance]
- @interface RQDouYinManager : NSObject <WXApiDelegate>
- @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
|