StrongCell.h 558 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // StrongCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/13.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface StrongCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *rightTitleLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *indexLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *rightIndexLabel;
  14. @property (weak, nonatomic) IBOutlet UIButton *btn;
  15. @property (weak, nonatomic) IBOutlet UIButton *rightBtn;
  16. @end