testViewController.m 994 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // testViewController.m
  3. // RedAnt Mobile
  4. //
  5. // Created by Ray on 07/09/2017.
  6. // Copyright © 2017 Ray. All rights reserved.
  7. //
  8. #import "testViewController.h"
  9. #import "CommonEditorCellSwitch.h"
  10. @interface testViewController ()
  11. @end
  12. @implementation testViewController
  13. - (void)viewDidLoad {
  14. [super viewDidLoad];
  15. // Do any additional setup after loading the view from its nib.
  16. // [self.tableview registerClass:[CommonEditorCellSwitch class] forCellReuseIdentifier:IDENTIFIER];
  17. }
  18. - (void)didReceiveMemoryWarning {
  19. [super didReceiveMemoryWarning];
  20. // Dispose of any resources that can be recreated.
  21. }
  22. /*
  23. #pragma mark - Navigation
  24. // In a storyboard-based application, you will often want to do a little preparation before navigation
  25. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  26. // Get the new view controller using [segue destinationViewController].
  27. // Pass the selected object to the new view controller.
  28. }
  29. */
  30. @end