SelectorViewController.h 955 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // SelectorViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 8/3/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SelectorViewController;
  10. @protocol SelectorDelegate <NSObject>
  11. @required
  12. //- (NSUInteger)numberOfPhotosInPhotoStackView:(PhotoStackView *)photoStack;
  13. - (void) selected:(NSString*) detail_id category:(NSString*) category ;
  14. //- (void) LongPress:(UIView*)view row:(int) x column:(int) y;
  15. //- (void) LongPress:(UIView*)view row:(int) x;
  16. //- (void) Tap:(UIView*)view row:(int) x column:(int) y;
  17. //- (void) Tap:(UIView*)view row:(int) x;
  18. @end
  19. @interface SelectorViewController : UIViewController
  20. {
  21. @private
  22. // id <MDSpreadViewDataSource>__unsafe_unretained _dataSource;
  23. id <SelectorDelegate> __weak selectordelegate;
  24. }
  25. @property (strong,nonatomic) NSDictionary* selector;
  26. @property (weak, nonatomic) id <SelectorDelegate> selectordelegate;
  27. @end