XMGTitleButton.m 587 B

123456789101112131415161718192021
  1. //
  2. // XMGTitleButton.m
  3. // 备课-百思不得姐
  4. //
  5. // Created by MJ Lee on 15/6/15.
  6. // Copyright © 2015年 小码哥. All rights reserved.
  7. //
  8. #import "XMGTitleButton.h"
  9. @implementation XMGTitleButton
  10. - (nonnull instancetype)initWithFrame:(CGRect)frame
  11. {
  12. if (self = [super initWithFrame:frame]) {
  13. [self setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
  14. //[self setTitleColor:[UIColor redColor] forState:UIControlStateDisabled];
  15. self.titleLabel.font = [UIFont systemFontOfSize:18 weight:UIFontWeightMedium];
  16. }
  17. return self;
  18. }
  19. @end