1234567891011121314151617181920212223242526 |
- //
- // KBUMbindWeChat.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/5/25.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UMSocialCore/UMSocialCore.h>
- @interface KBUMbindWeChat : NSObject
- /**
- //单例
-
- @return 单例对象
- */
- +(instancetype)sharedInstance;
- -(void)bindWeChatSuccess:(void(^)(UMSocialUserInfoResponse *response))succ fail:(void(^)(NSError *error))fail;
- - (void)loginWithPlatformSuccess:(void(^)(UMSocialUserInfoResponse *response))response fail:(void(^)(NSError *error))fail;
- - (void)loginWeChatSuccess:(void(^)(UMSocialUserInfoResponse *response))succ fail:(void(^)(NSError *error))fail;
- @end
|