CategoryCellSmall.m 582 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // CategoryCellSmall.m
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 14-7-3.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "CategoryCellSmall.h"
  9. @implementation CategoryCellSmall
  10. - (id)initWithFrame:(CGRect)frame
  11. {
  12. self = [super initWithFrame:frame];
  13. if (self) {
  14. // Initialization code
  15. }
  16. return self;
  17. }
  18. /*
  19. // Only override drawRect: if you perform custom drawing.
  20. // An empty implementation adversely affects performance during animation.
  21. - (void)drawRect:(CGRect)rect
  22. {
  23. // Drawing code
  24. }
  25. */
  26. @end