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/FBSDKLiking.h | 19 ++++++++++++++++--- 1 files changed, 16 insertions(+), 3 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKLiking.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKLiking.h index 78855be..028c0f9 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKLiking.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKLiking.h @@ -16,15 +16,24 @@ // 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 <Foundation/Foundation.h> + +#import "FBSDKLikeObjectType.h" + +NS_ASSUME_NONNULL_BEGIN /** The common interface for components that initiate liking. -- See:FBSDKLikeButton + @see FBSDKLikeButton -- See:FBSDKLikeControl + @see FBSDKLikeControl */ +NS_SWIFT_NAME(Liking) @protocol FBSDKLiking <NSObject> /** @@ -32,7 +41,7 @@ This value may be an Open Graph object ID or a string representation of an URL that describes an - Open Graph object. The objects may be public objects, like pages, or objects that are defined by your application. + Open Graph object. The objects may be public objects, like pages, or objects that are defined by your application. */ @property (nonatomic, copy) NSString *objectID; @@ -47,3 +56,7 @@ @property (nonatomic, assign) FBSDKLikeObjectType objectType; @end + +NS_ASSUME_NONNULL_END + +#endif -- Gitblit v1.8.0