From 706ba043d6c5dbda372b898faee3ae72e5efda4c Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Fri, 28 Apr 2017 11:32:51 +0800 Subject: [PATCH] [Update] WAFbImpl (3.6.2) --- frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h | 38 +++++++++++++++++++------------------- 1 files changed, 19 insertions(+), 19 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h index 9974008..dcec319 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareVideo.h @@ -22,40 +22,40 @@ @class FBSDKSharePhoto; -/*! - @abstract A video for sharing. +/** + A video for sharing. */ @interface FBSDKShareVideo : NSObject <FBSDKCopying, NSSecureCoding> -/*! - @abstract Convenience method to build a new video object with a videoURL. - @param videoURL The URL to the video +/** + Convenience method to build a new video object with a videoURL. + - Parameter videoURL: The URL to the video */ + (instancetype)videoWithVideoURL:(NSURL *)videoURL; -/*! - @abstract Convenience method to build a new video object with a videoURL and a previewPhoto - @param videoURL The URL to the video - @param previewPhoto The photo that represents the video +/** + Convenience method to build a new video object with a videoURL and a previewPhoto + - Parameter videoURL: The URL to the video + - Parameter previewPhoto: The photo that represents the video */ + (instancetype)videoWithVideoURL:(NSURL *)videoURL previewPhoto:(FBSDKSharePhoto *)previewPhoto; -/*! - @abstract The file URL to the video. - @return URL that points to the location of the video on disk +/** + The file URL to the video. + - Returns: URL that points to the location of the video on disk */ @property (nonatomic, copy) NSURL *videoURL; -/*! - @abstract The photo that represents the video. - @return The photo +/** + The photo that represents the video. + - Returns: The photo */ @property (nonatomic, copy) FBSDKSharePhoto *previewPhoto; -/*! - @abstract Compares the receiver to another video. - @param video The other video - @return YES if the receiver's values are equal to the other video's values; otherwise NO +/** + Compares the receiver to another video. + - Parameter video: The other video + - Returns: YES if the receiver's values are equal to the other video's values; otherwise NO */ - (BOOL)isEqualToShareVideo:(FBSDKShareVideo *)video; -- Gitblit v1.8.0