ThingsDelPlugViewController.m 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. @interface ThingsDelPlugViewController ()
  13. @end
  14. @implementation ThingsDelPlugViewController
  15. // 가스 밸브 타이틀 : 가스 밸브 삭제
  16. // 가스 밸브 삭제 코멘트 : 동일
  17. // 가스 밸브 이미지명 : img_things_product_addimg_01_smartgasvalve
  18. // 도어센서 타이틀 : 도어 센서 삭제
  19. // 도어센서 삭제 코멘트 : 동일
  20. // 도어센서 이미지 명 : img_things_product_addimg_02_mutisensor_door
  21. // 스마트플러그 타이틀 : 스마트 플러그 삭제
  22. // 스마트플러그 삭제 코멘트 : 동일
  23. // 스마트플러그 이미지 명 : img_things_product_addimg_03_smartplug
  24. - (void)viewDidLoad {
  25. [super viewDidLoad];
  26. }
  27. - (void)didReceiveMemoryWarning {
  28. [super didReceiveMemoryWarning];
  29. }
  30. - (IBAction)btnCancelTouched:(id)sender {
  31. }
  32. - (IBAction)btnStartTouched:(id)sender {
  33. }
  34. @end