BBAToolBarItem+CommentDisable.h
539 Bytes
//
// BBAToolBarItem+CommentDisable.h
// BBAUIKit
//
// Created by Liu,Xianting on 2018/6/11.
// Copyright © 2018年 Baidu. All rights reserved.
//
#import "BBAToolBarItem.h"
@interface BBAToolBarItem (CommentDisable)
/**
评论是否被禁用
@return YES 被禁用 NO 没有
*/
- (BOOL)bba_comment_isDisable;
/**
关闭评论按钮的点击事件,并切换评论置灰的图片
*/
- (void)bba_comment_disable;
/**
打开评论按钮的点击事件,并切换评论可用的图片
*/
- (void)bba_comment_enable;
@end