RITLPhotosBrowseImageCell.h 521 B

123456789101112131415161718192021222324
  1. //
  2. // RITLPhotoBrowerCell.h
  3. // RITLPhotoDemo
  4. //
  5. // Created by YueWen on 2016/12/29.
  6. // Copyright © 2017年 YueWen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 普通图片的cell
  11. @interface RITLPhotosBrowseImageCell : UICollectionViewCell
  12. /// 显示图片的imageView
  13. @property (strong, nonatomic) IBOutlet UIImageView *imageView;
  14. /// 底部负责滚动的滚动视图
  15. @property (strong, nonatomic, readonly) IBOutlet UIScrollView *bottomScrollView;
  16. @end
  17. NS_ASSUME_NONNULL_END