From 3e8437ae559487362fae3525beb79c534c213a51 Mon Sep 17 00:00:00 2001 From: 单军华 Date: Thu, 12 Jul 2018 13:44:34 +0800 Subject: [PATCH] bug修复和功能优化 --- screendisplay/Pods/UMengUShare/UShareSDK/SocialLibraries/QQ/QQSDK/TencentOpenAPI.framework/Headers/TencentApiInterface.h | 104 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 104 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/UMengUShare/UShareSDK/SocialLibraries/QQ/QQSDK/TencentOpenAPI.framework/Headers/TencentApiInterface.h b/screendisplay/Pods/UMengUShare/UShareSDK/SocialLibraries/QQ/QQSDK/TencentOpenAPI.framework/Headers/TencentApiInterface.h new file mode 100755 index 0000000..958226c --- /dev/null +++ b/screendisplay/Pods/UMengUShare/UShareSDK/SocialLibraries/QQ/QQSDK/TencentOpenAPI.framework/Headers/TencentApiInterface.h @@ -0,0 +1,104 @@ +// +// TencentMessage.h +// TencentOpenApi_IOS +// +// Created by qqconnect on 13-5-29. +// Copyright (c) 2013��� Tencent. All rights reserved. +// + +#ifndef QQ_OPEN_SDK_LITE + +#import <Foundation/Foundation.h> +#import "TencentMessageObject.h" + +typedef enum +{ + kIphoneQQ, + kIphoneQZONE, + kIphoneTIM, + kThirdApp, +} +TecnentPlatformType; + +typedef enum +{ + kTencentApiSuccess, + kTencentApiPlatformUninstall, + kTencentApiPlatformNotSupport, + kTencentApiParamsError, + kTencentApiFail, +} +TencentApiRetCode; + +@class TencentApiReq; +@class TencentApiResp; + +/** + * \brief TencentApiInterface��������� + * + * TencentApiInterface��������������� + * \note v1.0������������������������������������������������������ + */ +@protocol TencentApiInterfaceDelegate <NSObject> + +@optional +/** + * ������������������ ������������������������������������������������������ + */ +- (BOOL)onTencentReq:(TencentApiReq *)req; + +/** + * ������������������ ��������������������������������������������������������������� + */ +- (BOOL)onTencentResp:(TencentApiResp *)resp; + +@end + +/** + * \brief TencentApiInterface��������� + * + * TencentApiInterface��������������� + * \note v1.0������������������������������������ + */ +@interface TencentApiInterface : NSObject + +/** + * ������������������������������ + * \param resp ������������ + * \return ��������� + */ ++ (TencentApiRetCode)sendRespMessageToTencentApp:(TencentApiResp *)resp; + +/** + * ������������������������������ + * \param url + * \param delegate ��������������� + * \return ���������������API��������������������� + */ ++ (BOOL)canOpenURL:(NSURL *)url delegate:(id<TencentApiInterfaceDelegate>)delegate; + +/** + * ������������������������ + * \param url + * \param delegate ��������������� + * \return ���������������API��������������������� + */ ++ (BOOL)handleOpenURL:(NSURL *)url delegate:(id<TencentApiInterfaceDelegate>)delegate; + +/** + * ������������������������������APP + * \param platform ��������������������� + * \return YES:������ NO:��������� + */ ++ (BOOL)isTencentAppInstall:(TecnentPlatformType)platform; + +/** + * ������������������������������SDK + * \param platform ��������������������� + * \return YES:������ NO:��������� + */ ++ (BOOL)isTencentAppSupportTencentApi:(TecnentPlatformType)platform; + +@end + +#endif -- Gitblit v1.8.0