| 1234567891011121314151617181920212223242526272829303132 |
- //
- // SelectorViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 8/3/15.
- // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class SelectorViewController;
- @protocol SelectorDelegate <NSObject>
- @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 <MDSpreadViewDataSource>__unsafe_unretained _dataSource;
- id <SelectorDelegate> __weak selectordelegate;
- }
- @property (strong,nonatomic) NSDictionary* selector;
- @property (weak, nonatomic) id <SelectorDelegate> selectordelegate;
- @end
|