SalesManSearchCell.m 474 B

12345678910111213141516171819202122232425
  1. //
  2. // YeWuYuanSearchCell.m
  3. // IBOSSIPAD
  4. //
  5. // Created by iHope on 14-8-14.
  6. // Copyright (c) 2014年 elongtian. All rights reserved.
  7. //
  8. #import "SalesManSearchCell.h"
  9. @implementation SalesManSearchCell
  10. - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
  11. {
  12. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  13. if (self) {
  14. }
  15. return self;
  16. }
  17. - (void)awakeFromNib
  18. {
  19. [super awakeFromNib];
  20. }
  21. @end