MainViewController.m 866 B

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