// // topicDescCell.h // ThePaperHD // // Created by scar1900 on 15/5/12. // Copyright (c) 2015年 scar1900. All rights reserved. // #import @class topicDescCell; @protocol topicDescCellDelegate - (void)clickToExpand:(BOOL)isExpand andIndexPath:(NSIndexPath *)indexPath Cell:(topicDescCell *)cell; @end @interface topicDescCell : UITableViewCell @property(nonatomic, assign)BOOL expand; @property(nonatomic, strong)NSString *topicDesc; @property(nonatomic, weak)id delegate; @property(nonatomic, strong)NSString *timeStr; @property(nonatomic, strong)NSString *kindStr; @property(nonatomic, strong)NSIndexPath *indexPath; @property(nonatomic, strong)RTLabel *descLabel; @end