123456789101112131415161718192021222324252627282930313233 |
- //
- // StrongCell.h
- // jiaPei
- //
- // Created by apple on 16/1/13.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface StrongCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *rightTitleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *indexLabel;
- @property (weak, nonatomic) IBOutlet UILabel *rightIndexLabel;
- @property (weak, nonatomic) IBOutlet UIButton *btn;
- @property (weak, nonatomic) IBOutlet UIButton *rightBtn;
- @end
|