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/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h index bdab4dc..397277e 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h @@ -32,7 +32,7 @@ FOUNDATION_EXPORT NSString *const FBSDKNonJSONResponseProperty NS_SWIFT_NAME(NonJSONResponseProperty); -@class FBSDKGraphRequest; +@protocol FBSDKGraphRequest; @class FBSDKGraphRequestConnection; /** @@ -213,7 +213,7 @@ The completion handler is retained until the block is called upon the completion or cancellation of the connection. */ -- (void)addRequest:(FBSDKGraphRequest *)request +- (void)addRequest:(id<FBSDKGraphRequest>)request completionHandler:(FBSDKGraphRequestBlock)handler; /** @@ -235,7 +235,7 @@ completion or cancellation of the connection. This request can be named to allow for using the request's response in a subsequent request. */ -- (void)addRequest:(FBSDKGraphRequest *)request +- (void)addRequest:(id<FBSDKGraphRequest>)request batchEntryName:(NSString *)name completionHandler:(FBSDKGraphRequestBlock)handler; @@ -256,7 +256,7 @@ completion or cancellation of the connection. This request can be named to allow for using the request's response in a subsequent request. */ -- (void)addRequest:(FBSDKGraphRequest *)request +- (void)addRequest:(id<FBSDKGraphRequest>)request batchParameters:(nullable NSDictionary<NSString *, id> *)batchParameters completionHandler:(FBSDKGraphRequestBlock)handler; -- Gitblit v1.8.0