FavCell.h 247 B

12345678910111213141516
  1. //我的收藏的cell
  2. #import <UIKit/UIKit.h>
  3. @interface FavCell : UITableViewCell
  4. @property(nonatomic,strong)NSDictionary* model;
  5. +(FavCell*)cellForTableView:(UITableView*)tableView;
  6. @end
  7. CGFloat FavCellHeightByDict(NSDictionary* dict);