TCExpressionSectionBar.m 461 B

1234567891011121314151617181920212223
  1. //
  2. // TCExpressionSectionBar.m
  3. // QimoQM
  4. //
  5. // Created by TuChuan on 15/5/13.
  6. // Copyright (c) 2015年 七陌科技. All rights reserved.
  7. //
  8. #import "TCExpressionSectionBar.h"
  9. @implementation TCExpressionSectionBar
  10. - (id)initWithFrame:(CGRect)frame
  11. {
  12. self = [super initWithFrame:frame];
  13. if (self) {
  14. self.backgroundColor = [UIColor colorWithRed:255.0f/255 green:250.0f/255 blue:240.0f/255 alpha:1];
  15. }
  16. return self;
  17. }
  18. @end