ShareListViewController.m 943 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // SHareListViewController.m
  3. // WSCloudStorage
  4. //
  5. // Created by JonathanH on 2017/8/3.
  6. // Copyright © 2017年 wswinsoft. All rights reserved.
  7. //
  8. #import "ShareListViewController.h"
  9. @interface ShareListViewController ()
  10. @end
  11. @implementation ShareListViewController
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. self.title = @"分享";
  15. self.view.backgroundColor = [UIColor blueColor];
  16. // Do any additional setup after loading the view.
  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