TASCell.h 397 B

12345678910111213141516171819202122232425262728293031
  1. //queryTrainAndScore的cell
  2. //废弃
  3. #import <UIKit/UIKit.h>
  4. @interface TASCell : UITableViewCell
  5. {
  6. /**用于layoutsubviews
  7. */
  8. NSInteger subject;
  9. UILabel* titState,*lblState;
  10. }
  11. /**
  12. 1科目一
  13. 2科目二
  14. 3科目三
  15. */
  16. -(void)setModel:(NSDictionary*)obj andSubject:(NSInteger)sub;
  17. +(id)cellForTabelView:(UITableView*)tableView;
  18. @end
  19. CGFloat TASCellHeight(void);