CommonGridViewController.h 1.0 KB

123456789101112131415161718192021222324252627282930
  1. //
  2. // OrderListViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 14-7-7.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SimpleGrid.h"
  10. @class CommonGridViewController;
  11. @protocol CommonGridViewControllerDelegate <NSObject>
  12. -(void) SelectOrder:(NSString *)orderid;
  13. @end
  14. @interface CommonGridViewController : UIViewController<UIGestureRecognizerDelegate,SimpleGridDelegate>
  15. @property (strong, nonatomic) IBOutlet SimpleGrid *grid;
  16. @property bool btop;
  17. @property (strong, nonatomic) IBOutlet UINavigationItem *navi_item;
  18. @property (nonatomic, weak) id<CommonGridViewControllerDelegate> delegate;
  19. @property (strong,nonatomic) UITapGestureRecognizer *tapGesture ;
  20. @property (strong , nonatomic) NSString* orderID;
  21. @property (strong , nonatomic) UINavigationController* navi;
  22. @property bool enableTap;
  23. @property bool enableLongPress;
  24. //@property (strong,nonatomic) NSDictionary* content_data;
  25. //@property (strong, nonatomic) IBOutlet UITableView *orderListTable;
  26. @end