From e81c27b13950ca02baa879ae7b8108c0c3ef7fb0 Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Thu, 20 Jun 2019 09:47:31 +0800 Subject: [PATCH] 添加V3.8.2 --- frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h index 22745cd..47f0ef3 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphObject.h @@ -22,6 +22,8 @@ #import <FBSDKShareKit/FBSDKShareOpenGraphValueContainer.h> +NS_ASSUME_NONNULL_BEGIN + /** An Open Graph Object for sharing. @@ -41,19 +43,22 @@ @"fitness:metrics:location:longitude": @"2.17403", }]; */ +NS_SWIFT_NAME(ShareOpenGraphObject) @interface FBSDKShareOpenGraphObject : FBSDKShareOpenGraphValueContainer <FBSDKCopying, NSSecureCoding> /** Convenience method to build a new action and set the object for the specified key. - - Parameter properties: Properties for the Open Graph object, which will be parsed into the proper models + @param properties Properties for the Open Graph object, which will be parsed into the proper models */ -+ (instancetype)objectWithProperties:(NSDictionary *)properties; ++ (instancetype)objectWithProperties:(NSDictionary<NSString *, id> *)properties; /** Compares the receiver to another Open Graph Object. - - Parameter object: The other object - - Returns: YES if the receiver's values are equal to the other object's values; otherwise NO + @param object The other object + @return YES if the receiver's values are equal to the other object's values; otherwise NO */ - (BOOL)isEqualToShareOpenGraphObject:(FBSDKShareOpenGraphObject *)object; @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0