CustomCell.m
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  CustomCell.m
  3. //  Cells
  4. //
  5. //  Created by Jeff LaMarche on 7/12/08.
  6. //  Copyright 2008 __MyCompanyName__. All rights reserved.
  7. //
  8. #import "CustomCell.h"
  9. @implementation CustomCell
  10. @synthesize nameLabel;
  11. @synthesize colorLabel;
  12. - (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
  13. if (self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) {
  14. // Initialization code
  15. }
  16. return self;
  17. }
  18. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  19. [super setSelected:selected animated:animated];
  20. // Configure the view for the selected state
  21. }
  22. - (void)dealloc {
  23. [super dealloc];
  24. }
  25. @end