| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // CategoryCellLarge.m
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-30.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import "CategoryCellLarge.h"
- @implementation CategoryCellLarge
- - (id)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
- if (self) {
- // Initialization code
-
-
-
- // self.contentView.layer.masksToBounds = false;
- // self.contentView.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.contentView.bounds].CGPath;
- // self.contentView.layer.shadowColor = [UIColor grayColor].CGColor;
- // self.contentView.layer.shadowOffset = CGSizeMake(0, 0);
- // self.contentView.layer.shadowOpacity = 0.5;
- // self.contentView.layer.shadowRadius = 2.0;
- }
- return self;
- }
- /*
- // Only override drawRect: if you perform custom drawing.
- // An empty implementation adversely affects performance during animation.
- - (void)drawRect:(CGRect)rect
- {
- // Drawing code
- }
- */
- @end
|