// // msgBottomCell.h // ThePaperBase // // Created by YoungLee on 15/11/19. // Copyright © 2015年 scar1900. All rights reserved. // #import #import "commentOkButton.h" @protocol msgBottomDelegate @optional - (void)hasPraisedAnswer:(NSIndexPath*)indexPath withCommentBO:(commentObjectVO*)commentBO; @end @interface msgBottomCell : UITableViewCell @property(nonatomic, strong)UIView *backView; @property(nonatomic, strong)UILabel *timeLabel; @property(nonatomic, strong)commentOkButton *okBtn; @property(nonatomic, strong)UIView *shadowLine; @property(nonatomic, strong)NSIndexPath *indexPath; @property(nonatomic, strong)commentObjectVO *comment; @property(nonatomic, weak)id delegate; - (void)commentOK:(UIButton*)btn; @end