Advertisement
afarber

LoadingTest/LoadingViewController.m

Dec 1st, 2013
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #import "LoadingViewController.h"
  2.  
  3. @interface LoadingViewController ()
  4.  
  5. @end
  6.  
  7. @implementation LoadingViewController
  8.  
  9. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
  10. {
  11. self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  12. if (self) {
  13. // Custom initialization
  14. }
  15. return self;
  16. }
  17.  
  18. - (void)viewDidLoad
  19. {
  20. [super viewDidLoad];
  21. // Do any additional setup after loading the view.
  22. }
  23.  
  24. - (void)didReceiveMemoryWarning
  25. {
  26. [super didReceiveMemoryWarning];
  27. // Dispose of any resources that can be recreated.
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement