12345678910111213141516171819202122232425262728293031 |
- //queryTrainAndScore的cell
- //废弃
- #import <UIKit/UIKit.h>
- @interface TASCell : UITableViewCell
- {
- /**用于layoutsubviews
- */
- NSInteger subject;
-
- UILabel* titState,*lblState;
- }
- /**
- 1科目一
- 2科目二
- 3科目三
- */
- -(void)setModel:(NSDictionary*)obj andSubject:(NSInteger)sub;
- +(id)cellForTabelView:(UITableView*)tableView;
- @end
- CGFloat TASCellHeight(void);
|