ThingsDelPlugViewController.m 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // ThingsDelPlugViewController.m
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 3. 21..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "ThingsDelPlugViewController.h"
  9. #import "CustomLabel.h"
  10. #import "CustomButton.h"
  11. #import "CustomImageView.h"
  12. // 오프라인 장치 강제 삭제
  13. @interface ThingsDelPlugViewController ()
  14. @end
  15. @implementation ThingsDelPlugViewController
  16. // 가스 밸브 타이틀 : 가스 밸브 삭제
  17. // 가스 밸브 삭제 코멘트 : 동일
  18. // 가스 밸브 이미지명 : img_things_product_addimg_01_smartgasvalve
  19. // 도어센서 타이틀 : 도어 센서 삭제
  20. // 도어센서 삭제 코멘트 : 동일
  21. // 도어센서 이미지 명 : img_things_product_addimg_02_mutisensor_door
  22. // 스마트플러그 타이틀 : 스마트 플러그 삭제
  23. // 스마트플러그 삭제 코멘트 : 동일
  24. // 스마트플러그 이미지 명 : img_things_product_addimg_03_smartplug
  25. - (void)viewDidLoad {
  26. [super viewDidLoad];
  27. }
  28. - (void)didReceiveMemoryWarning {
  29. [super didReceiveMemoryWarning];
  30. }
  31. - (IBAction)btnCancelTouched:(id)sender {
  32. }
  33. - (IBAction)btnStartTouched:(id)sender {
  34. }
  35. @end