CommonGridViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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. API_DEPRECATED("CommonGridViewController is deprecated (never used)", ios(2.0, 9.0))
  15. @interface CommonGridViewController : UIViewController<UIGestureRecognizerDelegate,SimpleGridDelegate>
  16. @property (strong, nonatomic) IBOutlet SimpleGrid *grid;
  17. @property bool btop;
  18. @property (strong, nonatomic) IBOutlet UINavigationItem *navi_item;
  19. @property (nonatomic, weak) id<CommonGridViewControllerDelegate> delegate;
  20. @property (strong,nonatomic) UITapGestureRecognizer *tapGesture ;
  21. @property (strong , nonatomic) NSString* orderID;
  22. @property (strong , nonatomic) UINavigationController* navi;
  23. @property bool enableTap;
  24. @property bool enableLongPress;
  25. //@property (strong,nonatomic) NSDictionary* content_data;
  26. //@property (strong, nonatomic) IBOutlet UITableView *orderListTable;
  27. @end