From afd70759b9bf1bd99c9a5f3578ce2c5474090340 Mon Sep 17 00:00:00 2001
From: Wuyx <1139965056@qq.com>
Date: Tue, 17 Jan 2017 12:12:30 +0800
Subject: [PATCH] WAFbImpl

---
 frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeControl.h |   90 +++++++++++++++++++++++---------------------
 1 files changed, 47 insertions(+), 43 deletions(-)

diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeControl.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeControl.h
index bbc88f2..9350c58 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeControl.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKLikeControl.h
@@ -23,114 +23,118 @@
 #import <FBSDKShareKit/FBSDKLikeObjectType.h>
 #import <FBSDKShareKit/FBSDKLiking.h>
 
-/*!
- @typedef NS_ENUM (NSUInteger, FBSDKLikeControlAuxiliaryPosition)
+/**
+ NS_ENUM (NSUInteger, FBSDKLikeControlAuxiliaryPosition)
 
- @abstract Specifies the position of the auxiliary view relative to the like button.
+  Specifies the position of the auxiliary view relative to the like button.
  */
 typedef NS_ENUM(NSUInteger, FBSDKLikeControlAuxiliaryPosition)
 {
-  /*! The auxiliary view is inline with the like button. */
+  /** The auxiliary view is inline with the like button. */
   FBSDKLikeControlAuxiliaryPositionInline,
-  /*! The auxiliary view is above the like button. */
+  /** The auxiliary view is above the like button. */
   FBSDKLikeControlAuxiliaryPositionTop,
-  /*! The auxiliary view is below the like button. */
+  /** The auxiliary view is below the like button. */
   FBSDKLikeControlAuxiliaryPositionBottom,
 };
 
-/*!
- @abstract Converts an FBSDKLikeControlAuxiliaryPosition to an NSString.
+/**
+  Converts an FBSDKLikeControlAuxiliaryPosition to an NSString.
  */
 FBSDK_EXTERN NSString *NSStringFromFBSDKLikeControlAuxiliaryPosition(FBSDKLikeControlAuxiliaryPosition auxiliaryPosition);
 
-/*!
- @typedef NS_ENUM(NSUInteger, FBSDKLikeControlHorizontalAlignment)
+/**
+ NS_ENUM(NSUInteger, FBSDKLikeControlHorizontalAlignment)
 
- @abstract Specifies the horizontal alignment for FBSDKLikeControlStyleStandard with
+  Specifies the horizontal alignment for FBSDKLikeControlStyleStandard with
  FBSDKLikeControlAuxiliaryPositionTop or FBSDKLikeControlAuxiliaryPositionBottom.
  */
 typedef NS_ENUM(NSUInteger, FBSDKLikeControlHorizontalAlignment)
 {
-  /*! The subviews are left aligned. */
+  /** The subviews are left aligned. */
   FBSDKLikeControlHorizontalAlignmentLeft,
-  /*! The subviews are center aligned. */
+  /** The subviews are center aligned. */
   FBSDKLikeControlHorizontalAlignmentCenter,
-  /*! The subviews are right aligned. */
+  /** The subviews are right aligned. */
   FBSDKLikeControlHorizontalAlignmentRight,
 };
 
-/*!
- @abstract Converts an FBSDKLikeControlHorizontalAlignment to an NSString.
+/**
+  Converts an FBSDKLikeControlHorizontalAlignment to an NSString.
  */
 FBSDK_EXTERN NSString *NSStringFromFBSDKLikeControlHorizontalAlignment(FBSDKLikeControlHorizontalAlignment horizontalAlignment);
 
-/*!
- @typedef NS_ENUM (NSUInteger, FBSDKLikeControlStyle)
+/**
+ NS_ENUM (NSUInteger, FBSDKLikeControlStyle)
 
- @abstract Specifies the style of a like control.
+  Specifies the style of a like control.
  */
 typedef NS_ENUM(NSUInteger, FBSDKLikeControlStyle)
 {
-  /*! Displays the button and the social sentence. */
+  /** Displays the button and the social sentence. */
   FBSDKLikeControlStyleStandard = 0,
-  /*! Displays the button and a box that contains the like count. */
+  /** Displays the button and a box that contains the like count. */
   FBSDKLikeControlStyleBoxCount,
 };
 
-/*!
- @abstract Converts an FBSDKLikeControlStyle to an NSString.
+/**
+  Converts an FBSDKLikeControlStyle to an NSString.
  */
 FBSDK_EXTERN NSString *NSStringFromFBSDKLikeControlStyle(FBSDKLikeControlStyle style);
 
-/*!
- @class FBSDKLikeControl
+/**
 
- @abstract UI control to like an object in the Facebook graph.
+  UI control to like an object in the Facebook graph.
 
- @discussion Taps on the like button within this control will invoke an API call to the Facebook app through a
+
+ Taps on the like button within this control will invoke an API call to the Facebook app through a
  fast-app-switch that allows the user to like the object.  Upon return to the calling app, the view will update
  with the new state and send actions for the UIControlEventValueChanged event.
  */
 @interface FBSDKLikeControl : UIControl <FBSDKLiking>
 
-/*!
- @abstract The foreground color to use for the content of the receiver.
+/**
+  The foreground color to use for the content of the receiver.
  */
 @property (nonatomic, strong) UIColor *foregroundColor;
 
-/*!
- @abstract The position for the auxiliary view for the receiver.
+/**
+  The position for the auxiliary view for the receiver.
 
- @see FBSDKLikeControlAuxiliaryPosition
+
+- See:FBSDKLikeControlAuxiliaryPosition
  */
 @property (nonatomic, assign) FBSDKLikeControlAuxiliaryPosition likeControlAuxiliaryPosition;
 
-/*!
- @abstract The text alignment of the social sentence.
+/**
+  The text alignment of the social sentence.
 
- @discussion This value is only valid for FBSDKLikeControlStyleStandard with
+
+ This value is only valid for FBSDKLikeControlStyleStandard with
  FBSDKLikeControlAuxiliaryPositionTop|Bottom.
  */
 @property (nonatomic, assign) FBSDKLikeControlHorizontalAlignment likeControlHorizontalAlignment;
 
-/*!
- @abstract The style to use for the receiver.
+/**
+  The style to use for the receiver.
 
- @see FBSDKLikeControlStyle
+
+- See:FBSDKLikeControlStyle
  */
 @property (nonatomic, assign) FBSDKLikeControlStyle likeControlStyle;
 
-/*!
- @abstract The preferred maximum width (in points) for autolayout.
+/**
+  The preferred maximum width (in points) for autolayout.
 
- @discussion This property affects the size of the receiver when layout constraints are applied to it. During layout,
+
+ This property affects the size of the receiver when layout constraints are applied to it. During layout,
  if the text extends beyond the width specified by this property, the additional text is flowed to one or more new
  lines, thereby increasing the height of the receiver.
  */
 @property (nonatomic, assign) CGFloat preferredMaxLayoutWidth;
 
-/*!
- @abstract If YES, a sound is played when the receiver is toggled.
+/**
+  If YES, a sound is played when the receiver is toggled.
 
  @default YES
  */

--
Gitblit v1.8.0