热更新demo

topicDescCell.h 737B

    // // topicDescCell.h // ThePaperHD // // Created by scar1900 on 15/5/12. // Copyright (c) 2015年 scar1900. All rights reserved. // #import <UIKit/UIKit.h> @class topicDescCell; @protocol topicDescCellDelegate <NSObject> - (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<topicDescCellDelegate> delegate; @property(nonatomic, strong)NSString *timeStr; @property(nonatomic, strong)NSString *kindStr; @property(nonatomic, strong)NSIndexPath *indexPath; @property(nonatomic, strong)RTLabel *descLabel; @end