Guest User

Untitled

a guest
Oct 15th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. //
  2. // MyViewController.m
  3. //
  4.  
  5. #import <QuartzCore/QuartzCore.h>
  6.  
  7. #import "MyViewController.h"
  8.  
  9. #import "MBProgressHUD.h"
  10. #import "Query.h"
  11. #import "QueryResponse.h"
  12.  
  13. @interface MyViewController ()
  14. {
  15. MBProgressHUD *hud;
  16. }
  17.  
  18. - (QueryResponse *)queryServiceWithQuery:(Query *)query;
  19.  
  20. @end
  21.  
  22. @implementation MyViewController
  23.  
  24. @pragma mark - Accessor methods
  25.  
  26. @synthesize *resultsTable;
  27.  
  28. @pragma mark - Parent methods
  29.  
  30. - (void)viewDidLoad
  31. {
  32. [super viewDidLoad];
  33.  
  34. hud = [[MBProgressHUD alloc] initWithView:self.view];
  35. [self.view addSubview:hud];
  36. }
  37.  
  38. @pragma mark - Public methods
  39.  
  40. - (IBAction)reload:(id)sender
  41. {
  42. // reload:
  43. }
  44.  
  45. @pragma mark - Private methods
  46.  
  47. - (QueryResponse *)queryServiceWithQuery:(Query *)query
  48. {
  49. // queryServiceWithQuery:
  50. }
  51.  
  52. @pragma mark - UITableViewDataSource methods
  53.  
  54. ...
  55.  
  56. @pragma mark - UITableViewDelegate methods
  57.  
  58. ...
  59.  
  60. @end
Add Comment
Please, Sign In to add comment