| 1234567891011121314151617181920212223242526272829 |
- //
- // BottomView.h
- // Haishenghai-master
- //
- // Created by 刘云鸽 on 2019/2/25.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface BottomView : UIView
- /**
- 全选按钮
- */
- @property (nonatomic ,strong) UIButton *allBtn;
- /**
- 删除按钮
- */
- @property (nonatomic,strong) UIButton *deleteBtn;
- /**
- 选中个数
- */
- @property (nonatomic,strong) UILabel *selectDevLabel;
- @end
|