BGReportView.h 687 B

123456789101112131415161718192021222324252627
  1. //
  2. // BGReportView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 2017/3/20.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol reportDeleGate <NSObject>
  10. //回退回上一个页面
  11. - (void)reportComeBack;
  12. @end
  13. @interface BGReportView : UIView
  14. @property (weak,nonatomic)id<reportDeleGate>RDeleGate;
  15. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  16. @property (weak, nonatomic) IBOutlet UIView *backView;
  17. @property (weak, nonatomic) IBOutlet UILabel *commentLabel;
  18. @property (weak, nonatomic) IBOutlet UIButton *comfirmBtn;
  19. @property (weak, nonatomic) IBOutlet UIView *lineView;
  20. @property (nonatomic,strong)UIImageView *backImgView;
  21. @end