ConfirmTableViewCell.h 566 B

12345678910111213141516171819
  1. //
  2. // ConfirmTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/8/12.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ConfirmTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *selectImgView;
  11. @property (weak, nonatomic) IBOutlet UILabel *protocolLabel;
  12. @property (weak, nonatomic) IBOutlet UIButton *comfirmButton;
  13. @property (weak, nonatomic) IBOutlet UIButton *protocolButton;
  14. @property (weak, nonatomic) IBOutlet UIView *lineView;
  15. @end