SLiveReportView.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // SLiveReportView.h
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/7/14.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseView.h"
  9. @class SLiveReportView;
  10. @protocol liveReportViewDelegate <NSObject>
  11. // 0取消 1确认 2删除整个页面
  12. - (void)clickWithReportId:(NSString *)reportId andBtnIndex:(int)btnIndex andView:(SLiveReportView *)reportView;
  13. @end
  14. @interface SLiveReportView : BGBaseView<UITableViewDelegate,UITableViewDataSource,UIGestureRecognizerDelegate>
  15. @property(nonatomic,weak) id<liveReportViewDelegate> reportDelegate;
  16. @property ( nonatomic,strong) UIView *bottomView;
  17. @property ( nonatomic,strong) UILabel *reportType;
  18. @property ( nonatomic,strong) UITableView *reportTableView;
  19. @property ( nonatomic,strong) UIView *lineView2;
  20. @property ( nonatomic,strong) UIButton *confirmButton;
  21. @property ( nonatomic,strong) UIView *VLineView;
  22. @property ( nonatomic,strong) UIButton *cancelButton;
  23. @property (strong, nonatomic) NSMutableArray *dataArray;
  24. @property (assign, nonatomic) NSUInteger paymentTag; // 举报的tag
  25. @property (copy, nonatomic) NSString *reportId;
  26. @end