BottomView.h 463 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // BottomView.h
  3. // Haishenghai-master
  4. //
  5. // Created by 刘云鸽 on 2019/2/25.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BottomView : UIView
  10. /**
  11. 全选按钮
  12. */
  13. @property (nonatomic ,strong) UIButton *allBtn;
  14. /**
  15. 删除按钮
  16. */
  17. @property (nonatomic,strong) UIButton *deleteBtn;
  18. /**
  19. 选中个数
  20. */
  21. @property (nonatomic,strong) UILabel *selectDevLabel;
  22. @end