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/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h index 621fac9..edaae96 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h @@ -20,16 +20,22 @@ #import <FBSDKCoreKit/FBSDKCopying.h> -/*! - @abstract Extension protocol for NSMutableCopying that adds the mutableCopy method, which is implemented on NSObject. - @discussion NSObject<NSCopying, NSMutableCopying> implicitly conforms to this protocol. +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> -/*! - @abstract Implemented by NSObject as a convenience to mutableCopyWithZone:. +/** + Implemented by NSObject as a convenience to mutableCopyWithZone:. @return A mutable copy of the receiver. */ - (id)mutableCopy; @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0