RITLPhotosBottomView.h 619 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // RITLPhotosBottomView.h
  3. // RITLPhotoDemo
  4. //
  5. // Created by YueWen on 2018/3/9.
  6. // Copyright © 2018年 YueWen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RITLPhotosBottomView : UIView
  11. ///
  12. @property (nonatomic, strong) UIView *contentView;
  13. /// 预览按钮
  14. @property (nonatomic, strong) UIButton *previewButton;
  15. /// 原图按钮
  16. @property (nonatomic, strong) UIButton *fullImageButton;
  17. /// 发送按钮
  18. @property (nonatomic, strong) UIButton *sendButton;
  19. /// YES:显示编辑 NO:显示预览
  20. @property (nonatomic, assign) BOOL isEdit;
  21. @end
  22. NS_ASSUME_NONNULL_END