lpw
2021-01-26 49b8839fda3439edc31581527e84036e58f55f0f
commit | author | age
bad748 1 // Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
W 2 //
3 // You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
4 // copy, modify, and distribute this software in source code or binary form for use
5 // in connection with the web services and APIs provided by Facebook.
6 //
7 // As with any software that integrates with the Facebook platform, your use of
8 // this software is subject to the Facebook Developer Principles and Policies
9 // [http://developers.facebook.com/policy/]. This copyright notice shall be
10 // included in all copies or substantial portions of the software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
14 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
15 // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
17 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18
49b883 19 #import "TargetConditionals.h"
L 20
21 #if !TARGET_OS_TV
22
bad748 23 #import <UIKit/UIKit.h>
49b883 24
L 25 @class FBSDKProfile;
bad748 26
e81c27 27 NS_ASSUME_NONNULL_BEGIN
H 28
9febd9 29 /**
W 30  FBSDKProfilePictureMode enum
31   Defines the aspect ratio mode for the source image of the profile picture.
bad748 32  */
W 33 typedef NS_ENUM(NSUInteger, FBSDKProfilePictureMode)
34 {
9febd9 35   /**
W 36     A square cropped version of the image will be included in the view.
bad748 37    */
W 38   FBSDKProfilePictureModeSquare,
9febd9 39   /**
W 40     The original picture's aspect ratio will be used for the source image in the view.
bad748 41    */
W 42   FBSDKProfilePictureModeNormal,
49b883 43   /**
L 44     The original picture's aspect ratio will be used for the source image in the view.
45    */
46   FBSDKProfilePictureModeAlbum,
47   /**
48     The original picture's aspect ratio will be used for the source image in the view.
49    */
50   FBSDKProfilePictureModeSmall,
51   /**
52     The original picture's aspect ratio will be used for the source image in the view.
53    */
54   FBSDKProfilePictureModeLarge,
e81c27 55 } NS_SWIFT_NAME(Profile.PictureMode);
bad748 56
9febd9 57 /**
W 58   A view to display a profile picture.
bad748 59  */
e81c27 60 NS_SWIFT_NAME(FBProfilePictureView)
bad748 61 @interface FBSDKProfilePictureView : UIView
49b883 62
L 63 /**
64  Create a new instance of `FBSDKProfilePictureView`.
65
66  - Parameter frame: Frame rectangle for the view.
67  - Parameter profile: Optional profile to display a picture for.
68  */
69 - (instancetype)initWithFrame:(CGRect)frame
70                       profile:(FBSDKProfile * _Nullable)profile;
71
72 /**
73  Create a new instance of `FBSDKProfilePictureView`.
74
75  - Parameter profile: Optional profile to display a picture for.
76  */
77 - (instancetype)initWithProfile:(FBSDKProfile * _Nullable)profile;
bad748 78
9febd9 79 /**
W 80   The mode for the receiver to determine the aspect ratio of the source image.
bad748 81  */
W 82 @property (nonatomic, assign) FBSDKProfilePictureMode pictureMode;
83
9febd9 84 /**
W 85   The profile ID to show the picture for.
bad748 86  */
W 87 @property (nonatomic, copy) NSString *profileID;
88
9febd9 89 /**
W 90   Explicitly marks the receiver as needing to update the image.
91
92  This method is called whenever any properties that affect the source image are modified, but this can also
bad748 93  be used to trigger a manual update of the image if it needs to be re-downloaded.
W 94  */
95 - (void)setNeedsImageUpdate;
96
97 @end
e81c27 98
H 99 NS_ASSUME_NONNULL_END
49b883 100
L 101 #endif