BBATableViewLongButtonFooter.h
706 Bytes
//
// BBATableViewLongButtonFooter.h
// BBAPods
//
// Created by Xiong Feng on 16/1/21.
// Copyright © 2016年 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
__attribute__ ((deprecated("该类已被废弃,请勿再使用")))
@interface BBATableViewLongButtonFooter : UIView<UIActionSheetDelegate>
- (void)setButtonColor:(NSString *)colorRGB;
@property (nonatomic, strong) NSString *title;
@property (nonatomic, copy) void(^actionBlock)(void);
@property (nonatomic) BOOL showActionSheet;
@property (nonatomic, strong) NSString *actionSheetTitle;
@property (nonatomic, strong) NSString *actionSheetDestructiveButtonTitle;
@property (nonatomic, copy) void(^didShowActionSheet)(void);
@end