FBShimmeringView.h 567 B

12345678910111213141516171819202122
  1. /**
  2. Copyright (c) 2014-present, Facebook, Inc.
  3. All rights reserved.
  4. This source code is licensed under the BSD-style license found in the
  5. LICENSE file in the root directory of this source tree. An additional grant
  6. of patent rights can be found in the PATENTS file in the same directory.
  7. */
  8. #import <UIKit/UIView.h>
  9. #import "FBShimmering.h"
  10. /**
  11. @abstract Lightweight, generic shimmering view.
  12. */
  13. @interface FBShimmeringView : UIView <FBShimmering>
  14. //! @abstract The content view to be shimmered.
  15. @property (strong, nonatomic) UIView *contentView;
  16. @end