| 123456789101112131415161718192021222324252627282930 |
- //
- // OrderListViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-7.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SimpleGrid.h"
- @class CommonGridViewController;
- @protocol CommonGridViewControllerDelegate <NSObject>
- -(void) SelectOrder:(NSString *)orderid;
- @end
- @interface CommonGridViewController : UIViewController<UIGestureRecognizerDelegate,SimpleGridDelegate>
- @property (strong, nonatomic) IBOutlet SimpleGrid *grid;
- @property bool btop;
- @property (strong, nonatomic) IBOutlet UINavigationItem *navi_item;
- @property (nonatomic, weak) id<CommonGridViewControllerDelegate> delegate;
- @property (strong,nonatomic) UITapGestureRecognizer *tapGesture ;
- @property (strong , nonatomic) NSString* orderID;
- @property (strong , nonatomic) UINavigationController* navi;
- @property bool enableTap;
- @property bool enableLongPress;
- //@property (strong,nonatomic) NSDictionary* content_data;
- //@property (strong, nonatomic) IBOutlet UITableView *orderListTable;
- @end
|