| 12345678910111213141516171819202122232425 |
- //
- // YeWuYuanSearchCell.m
- // IBOSSIPAD
- //
- // Created by iHope on 14-8-14.
- // Copyright (c) 2014年 elongtian. All rights reserved.
- //
- #import "SalesManSearchCell.h"
- @implementation SalesManSearchCell
- - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
- {
- self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
- if (self) {
- }
- return self;
- }
- - (void)awakeFromNib
- {
- [super awakeFromNib];
- }
- @end
|