WFCUFaceButton.m 484 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // FaceButton.m
  3. //
  4. // Created by blue on 12-9-26.
  5. // Copyright (c) 2012年 blue. All rights reserved.
  6. // Email - 360511404@qq.com
  7. // http://github.com/bluemood
  8. //
  9. #import "WFCUFaceButton.h"
  10. @implementation WFCUFaceButton
  11. @synthesize buttonIndex = _buttonIndex;
  12. - (id)initWithFrame:(CGRect)frame {
  13. self = [super initWithFrame:frame];
  14. if (self) {
  15. // Initialization code
  16. [self setFont:[UIFont systemFontOfSize:28]];
  17. }
  18. return self;
  19. }
  20. @end