BBAToolBarSystemButton.h
417 Bytes
//
// BBAToolBarSystemButton.h
// BBAPods
//
// Created by liuboyang01 on 16/8/26.
// Copyright © 2016年 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol BBAToolBarSystemButtonDelegate <NSObject>
- (void)toolBarSystemButtonDidTouchEndOrCancelled:(BOOL)didEnd;
@end
@interface BBAToolBarSystemButton : UIButton
@property (nonatomic, weak) id<BBAToolBarSystemButtonDelegate> delegate;
@end