Advertisement
Guest User

Filter.h

a guest
Mar 24th, 2015
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. //  FilterListViewController.h
  3. //  TourMyTown
  4. //
  5. //  Created by Michael Katz on 10/10/13.
  6. //  Copyright (c) 2013 mikekatz. All rights reserved.
  7. //
  8.  
  9. #import <UIKit/UIKit.h>
  10. #import "GAIDictionaryBuilder.h"
  11. #import "GAIFields.h"
  12. #import "GAIDictionaryBuilder.h"
  13. #import "GAI.h"
  14.  
  15. @protocol CategoryDelegate <NSObject>
  16.  
  17. - (void) selectedCategories:(NSArray*)array;
  18.  
  19. @end
  20.  
  21. @interface FilterListViewController : UITableViewController
  22.  
  23. @property (nonatomic, weak) id<CategoryDelegate> delegate;
  24.  
  25. - (instancetype) initWithSelectedCategories:(NSArray*)selections deleagte:(id<CategoryDelegate>)delegate;
  26.  
  27. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement