CarCell.h 365 B

1234567891011121314151617181920212223
  1. //
  2. // CarCell.h
  3. // jiaPeiC
  4. //
  5. // Created by apple on 15/12/23.
  6. // Copyright © 2015年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CarCell : UITableViewCell
  10. {
  11. UILabel *lblSname,*lblCtype,*titSname;
  12. }
  13. @property(nonatomic,strong) NSDictionary* model;
  14. +(id)cellForTabelView:(UITableView*)tableView;
  15. @end
  16. CGFloat CarCellHeight(void);