12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /*
- * Copyright 2010-present Facebook.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import <UIKit/UIKit.h>
- /*!
- @typedef FBProfilePictureCropping enum
- @abstract
- Type used to specify the cropping treatment of the profile picture.
- @discussion
- */
- typedef NS_ENUM(NSUInteger, FBProfilePictureCropping) {
- /*! Square (default) - the square version that the Facebook user defined. */
- FBProfilePictureCroppingSquare = 0,
- /*! Original - the original profile picture, as uploaded. */
- FBProfilePictureCroppingOriginal = 1
- };
- /*!
- @class
- @abstract
- An instance of `FBProfilePictureView` is used to display a profile picture.
- The default behavior of this control is to center the profile picture
- in the view and shrinks it, if necessary, to the view's bounds, preserving the aspect ratio. The smallest
- possible image is downloaded to ensure that scaling up never happens. Resizing the view may result in
- a different size of the image being loaded. Canonical image sizes are documented in the "Pictures" section
- of https://developers.facebook.com/docs/reference/api.
- */
- @interface FBProfilePictureView : UIView
- /*!
- @abstract
- The Facebook ID of the user, place or object for which a picture should be fetched and displayed.
- */
- @property (copy, nonatomic) NSString *profileID;
- /*!
- @abstract
- The cropping to use for the profile picture.
- */
- @property (nonatomic) FBProfilePictureCropping pictureCropping;
- /*!
- @abstract
- Initializes and returns a profile view object.
- */
- - (instancetype)init;
- /*!
- @abstract
- Initializes and returns a profile view object for the given Facebook ID and cropping.
- @param profileID The Facebook ID of the user, place or object for which a picture should be fetched and displayed.
- @param pictureCropping The cropping to use for the profile picture.
- */
- - (instancetype)initWithProfileID:(NSString *)profileID
- pictureCropping:(FBProfilePictureCropping)pictureCropping;
- @end
|