//
// HotAnswerContent.m
// ThePaperBase
//
// Created by zhousan on 15/11/23.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import "HotAnswerContent.h"
@implementation HotAnswerContent
- (void)commentBack:(id)sender {
UIMenuController *menu = [UIMenuController sharedMenuController];
if (menu.menuVisible) {
[menu setMenuVisible:NO animated:YES];
}
if ([self.delegate respondsToSelector:@selector(gotoCommentWithCommentBO:comment2:)]) {
[self.delegate gotoCommentWithCommentBO:self.commentBO comment2:self.commentNext];
};
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
// Drawing code
}
*/
@end
|