// // SwitchDeviceCell.m // neutralWatch // // Created by WeiChaoZheng on 2017/12/30. // Copyright © 2017年 xTT. All rights reserved. // #import "SwitchDeviceCell.h" @implementation SwitchDeviceCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code self.titleLabel.textColor = [UIColor whiteColor]; self.contentView.backgroundColor = [UIColor clearColor]; self.backgroundColor = [UIColor clearColor]; } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end