// // XMGTitleButton.m // 备课-百思不得姐 // // Created by MJ Lee on 15/6/15. // Copyright © 2015年 小码哥. All rights reserved. // #import "XMGTitleButton.h" @implementation XMGTitleButton - (nonnull instancetype)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { [self setTitleColor:[UIColor redColor] forState:UIControlStateNormal]; //[self setTitleColor:[UIColor redColor] forState:UIControlStateDisabled]; self.titleLabel.font = [UIFont systemFontOfSize:18 weight:UIFontWeightMedium]; } return self; } @end