CategoryCellLarge.m 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // CategoryCellLarge.m
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 14-7-30.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "CategoryCellLarge.h"
  9. @implementation CategoryCellLarge
  10. - (id)initWithFrame:(CGRect)frame
  11. {
  12. self = [super initWithFrame:frame];
  13. if (self) {
  14. // Initialization code
  15. // self.contentView.layer.masksToBounds = false;
  16. // self.contentView.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.contentView.bounds].CGPath;
  17. // self.contentView.layer.shadowColor = [UIColor grayColor].CGColor;
  18. // self.contentView.layer.shadowOffset = CGSizeMake(0, 0);
  19. // self.contentView.layer.shadowOpacity = 0.5;
  20. // self.contentView.layer.shadowRadius = 2.0;
  21. }
  22. return self;
  23. }
  24. /*
  25. // Only override drawRect: if you perform custom drawing.
  26. // An empty implementation adversely affects performance during animation.
  27. - (void)drawRect:(CGRect)rect
  28. {
  29. // Drawing code
  30. }
  31. */
  32. @end