Guest User

Untitled

a guest
May 26th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. NSInteger sectionView;
  2. NSInteger rowView;
  3. NSMutableArray *info;
  4. NSMutableArray *hours;
  5. NSMutableArray *more_Park;
  6. NSMutableArray *number;
  7. NSMutableArray *c_labs_mapNum;
  8. NSInteger mapLocater;
  9. NSString *viewtitle;
  10. CGFloat height;
  11. IBOutlet UITableView *table;
  12. Map *newMapView;
  13.  
  14. }
  15. @property (nonatomic, retain) NSMutableArray *c_labs_mapNum;
  16. @property (nonatomic, retain) Map *newMapView;
  17. @property (nonatomic, retain) UITableView *table;
  18. @property (nonatomic) CGFloat height;
  19. @property(nonatomic, retain) NSMutableArray *more_Park;
  20. @property(nonatomic, retain) NSString *viewtitle;
  21. @property(nonatomic) NSInteger mapLocater;
  22. @property(nonatomic, retain) NSMutableArray *number;
  23. @property(nonatomic, retain) NSMutableArray *hours;
  24. @property (nonatomic, retain) NSMutableArray *info;
  25. @property(nonatomic) NSInteger sectionView;
  26. @property(nonatomic) NSInteger rowView;
  27.  
  28.  
  29. - (void)viewDidDisappear:(BOOL)animated {
  30. [info removeAllObjects];
  31. [hours removeAllObjects];
  32. [more_Park removeAllObjects];
  33. [number removeAllObjects];
  34. [c_labs_mapNum removeAllObjects];
  35. }
  36.  
  37.  
  38. - (void)didReceiveMemoryWarning {
  39. NSLog(@"memory warning viewc_stuff.m");
  40. [super didReceiveMemoryWarning];
  41. }
  42.  
  43. - (void)dealloc {
  44. [number release];
  45. [c_labs_mapNum release];
  46. [table release];
  47. [info release];
  48. [hours release];
  49. [more_Park release];
  50. [newMapView release];
  51. [viewtitle release];
  52. [super dealloc];
  53. }
Add Comment
Please, Sign In to add comment