1234567891011121314151617181920212223242526272829 |
- //
- // RITLPhotosBottomView.h
- // RITLPhotoDemo
- //
- // Created by YueWen on 2018/3/9.
- // Copyright © 2018年 YueWen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RITLPhotosBottomView : UIView
- ///
- @property (nonatomic, strong) UIView *contentView;
- /// 预览按钮
- @property (nonatomic, strong) UIButton *previewButton;
- /// 原图按钮
- @property (nonatomic, strong) UIButton *fullImageButton;
- /// 发送按钮
- @property (nonatomic, strong) UIButton *sendButton;
- /// YES:显示编辑 NO:显示预览
- @property (nonatomic, assign) BOOL isEdit;
- @end
- NS_ASSUME_NONNULL_END
|