From b19a78b27247f5f0761c35b5b3e8a41876eabb05 Mon Sep 17 00:00:00 2001 From: lpw <pengwei.li@gamehollywood.com> Date: Tue, 20 Apr 2021 17:18:32 +0800 Subject: [PATCH] no message --- frameworks/FBSDKShareKit.framework/Headers/FBSDKShareButton.h | 22 +++++++++++++++++----- 1 files changed, 17 insertions(+), 5 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareButton.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareButton.h index d6b46fd..1c5ab75 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareButton.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareButton.h @@ -16,17 +16,29 @@ // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + #import <UIKit/UIKit.h> -#import <FBSDKCoreKit/FBSDKButton.h> +#import "FBSDKCoreKitImport.h" -#import <FBSDKShareKit/FBSDKSharingButton.h> +#import "FBSDKSharingButton.h" -/*! - @abstract A button to share content. - @discussion Tapping the receiver will invoke the FBSDKShareDialog with the attached shareContent. If the dialog cannot +NS_ASSUME_NONNULL_BEGIN + +/** + A button to share content. + + Tapping the receiver will invoke the FBSDKShareDialog with the attached shareContent. If the dialog cannot be shown, the button will be disabled. */ +NS_SWIFT_NAME(FBShareButton) @interface FBSDKShareButton : FBSDKButton <FBSDKSharingButton> @end + +NS_ASSUME_NONNULL_END + +#endif -- Gitblit v1.8.0