| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // ItemSearchViewController.h
- // iShop
- //
- // Created by Rui Zhang on 1/29/24.
- //
- #import "TabViewController.h"
- #import "CategoryHeaderView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ItemSearchViewController : TabViewController<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout,UIScrollViewDelegate>
- #pragma mark view
- @property (strong, nonatomic) IBOutlet UICollectionView *collectionview;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong, nonatomic) IBOutlet CategoryHeaderView *headerView;
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @property (strong, nonatomic) IBOutlet UILabel *cagegoryLabel;
- #pragma mark control
- @property int categoryViewType;
- @property long offset;
- @property bool loadall;
- @property bool showalert;
- @property bool showDetail;
- #pragma mark data
- @property (strong, nonatomic, nullable) NSMutableDictionary* category_data;
- @property (strong,nonatomic,nullable) NSString* categoryid;
- @property (strong,nonatomic,nullable) NSString* p_alert;
- @property (strong,nonatomic,nullable) NSString* p_available;
- @property (strong,nonatomic,nullable) NSString* p_QTY;
- @property (strong,nonatomic,nullable) NSString* p_price;
- @property (strong,nonatomic,nullable) NSString* p_bestseller;
- @property (strong,nonatomic,nullable) NSString* modelname;
- @property (strong,nonatomic,nullable) NSString* modeldescrip;
- @property (strong,nonatomic,nullable) NSString* ctgid;
- @property (strong,nonatomic,nullable) NSString* covertype;
- @property (strong,nonatomic,nullable) NSString* alert;
- @end
- NS_ASSUME_NONNULL_END
|