|
//
// msgBottomCell.h
// ThePaperBase
//
// Created by YoungLee on 15/11/19.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "commentOkButton.h"
@protocol msgBottomDelegate <NSObject>
@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<msgBottomDelegate> delegate;
- (void)commentOK:(UIButton*)btn;
@end
|