// // 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