| 12345678910111213141516171819202122232425262728293031 |
- //
- // CategoryCellSmall.m
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-3.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import "CategoryCellSmall.h"
- @implementation CategoryCellSmall
- - (id)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
- if (self) {
- // Initialization code
- }
- 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
|