From 7cdaa24f3ba637804aca9247ae809c4cc1acc6ed Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Wed, 27 May 2020 09:41:28 +0800 Subject: [PATCH] 3.8.4 --- frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h index 1b351db..edaae96 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h @@ -20,17 +20,22 @@ #import <FBSDKCoreKit/FBSDKCopying.h> +NS_ASSUME_NONNULL_BEGIN + /** Extension protocol for NSMutableCopying that adds the mutableCopy method, which is implemented on NSObject. NSObject<NSCopying, NSMutableCopying> implicitly conforms to this protocol. */ +NS_SWIFT_NAME(MutableCopying) @protocol FBSDKMutableCopying <FBSDKCopying, NSMutableCopying> /** Implemented by NSObject as a convenience to mutableCopyWithZone:. - - Returns: A mutable copy of the receiver. + @return A mutable copy of the receiver. */ - (id)mutableCopy; @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0