|
//
// commentActionView.h
// ThePaperDemo
//
// Created by scar1900 on 14/12/30.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef enum
{
replying, //评论
copying, //复制
praising, //点赞
}
commentActionType;
@interface commentActionView : UIView
@property(nonatomic, strong)commentObjectVO *commentBO;
@property(nonatomic, weak)id delegate;
@property(nonatomic, assign)BOOL isRotate;
- (void)commentActionHandler:(void(^)(commentObjectVO*,commentActionType))block;
- (void)dismissCommentContent;
@end
|