CustomCell.m
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
- //
- // CustomCell.m
- // Cells
- //
- // Created by Jeff LaMarche on 7/12/08.
- // Copyright 2008 __MyCompanyName__. All rights reserved.
- //
- #import "CustomCell.h"
- @implementation CustomCell
- @synthesize nameLabel;
- @synthesize colorLabel;
- - (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
- if (self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) {
- // Initialization code
- }
- return self;
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- - (void)dealloc {
- [super dealloc];
- }
- @end