RITLPhotosGroupCell.h 540 B

123456789101112131415161718192021222324252627
  1. //
  2. // YPPhotoGroupCell.h
  3. // YPPhotoDemo
  4. //
  5. // Created by YueWen on 16/7/13.
  6. // Copyright © 2017年 YueWen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 组的自定义cell
  11. @interface RITLPhotosGroupCell : UITableViewCell
  12. /// 显示图片的imageView
  13. @property (strong, nonatomic) IBOutlet UIImageView * imageView;
  14. /// 分组的名称
  15. @property (strong, nonatomic) IBOutlet UILabel * titleLabel;
  16. ///
  17. @property (strong, nonatomic) IBOutlet UIImageView * arrowImageView;
  18. @end
  19. NS_ASSUME_NONNULL_END