// // SelectorViewController.h // RedAnt ERP Mobile // // Created by Ray on 8/3/15. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved. // #import @class SelectorViewController; @protocol SelectorDelegate @required //- (NSUInteger)numberOfPhotosInPhotoStackView:(PhotoStackView *)photoStack; - (void) selected:(NSString*) detail_id category:(NSString*) category ; //- (void) LongPress:(UIView*)view row:(int) x column:(int) y; //- (void) LongPress:(UIView*)view row:(int) x; //- (void) Tap:(UIView*)view row:(int) x column:(int) y; //- (void) Tap:(UIView*)view row:(int) x; @end @interface SelectorViewController : UIViewController { @private // id __unsafe_unretained _dataSource; id __weak selectordelegate; } @property (strong,nonatomic) NSDictionary* selector; @property (weak, nonatomic) id selectordelegate; @end