MGShopView.h 701 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MGShopView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2020/7/17.
  6. // Copyright © 2020 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MGShopView : BGBaseView<UITableViewDelegate,UITableViewDataSource>
  11. @property (nonatomic, strong) UITableView *tableView;
  12. @property (nonatomic, strong) NSMutableArray *dataArray;
  13. @property (nonatomic, strong) UIView *shadowView;
  14. @property (nonatomic, strong) UILabel *titleLabel;
  15. @property (nonatomic, copy) NSString *user_id;
  16. - (instancetype)initWithFrame:(CGRect)frame UserId:(NSString *)userID ResponseJson:(NSDictionary *)json;
  17. - (void)show:(UIView *)superView;
  18. - (void)hide;
  19. @end
  20. NS_ASSUME_NONNULL_END