DownloadQueenViewController.m 877 B

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