| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // RAOptionCell.m
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/12.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import "RAOptionCell.h"
- @interface RAOptionCell ()
- @property (nonatomic,strong) IBOutlet UILabel *titleLabel;
- @end
- @implementation RAOptionCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)prepareForReuse {
- [super prepareForReuse];
-
- [self setTitle:nil];
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- - (void)setTitle:(NSString *)title {
- self.titleLabel.text = title;
- }
- @end
|