RDSAddView.m 618 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // RDSAddView.m
  3. // Temperature
  4. //
  5. // Created by RD on 2022/11/17.
  6. //
  7. #import "RDSAddView.h"
  8. @implementation RDSAddView
  9. /*
  10. // Only override drawRect: if you perform custom drawing.
  11. // An empty implementation adversely affects performance during animation.
  12. - (void)drawRect:(CGRect)rect {
  13. // Drawing code
  14. }
  15. */
  16. - (IBAction)onOutsideClick:(UIButton *)sender {
  17. DDLog(@"点击蒙板");
  18. BLOCK_SAFE_RUN(_onHideBtnClick);
  19. }
  20. - (IBAction)onRoomAction:(UIButton *)sender {
  21. BLOCK_SAFE_RUN(_onRoomBtnClick);
  22. }
  23. - (IBAction)onSceneAction:(UIButton *)sender {
  24. BLOCK_SAFE_RUN(_onSceneBtnClick);
  25. }
  26. @end