STTableLeftRightCell.h 530 B

1234567891011121314151617181920
  1. //
  2. // STTableLeftRightLabCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/18.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STTableBaseCell.h"
  10. @interface STTableLeftRightCell : STTableBaseCell
  11. @property (weak, nonatomic) IBOutlet UIView *separatorView;
  12. @property (weak, nonatomic) IBOutlet UILabel *leftLab;
  13. @property (weak, nonatomic) IBOutlet UILabel *rightLab;
  14. @property (weak, nonatomic) IBOutlet UILabel *rightLabel;
  15. @property(nonatomic, strong) QMUIButton *leftBtn;
  16. @end