123456789101112131415161718192021222324 |
- //
- // HCTitleMoreMeunView.h
- // hc
- //
- // Created by hc on 2018/11/7.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class HCTitleMoreMeunView;
- @protocol KBTitleMoreMenuViewDelegate<NSObject>
- - (void)titleMorenMenu:(HCTitleMoreMeunView *)menuView Button:(UIButton *)button clickIndex:(NSInteger)index;
- @end
- @interface HCTitleMoreMeunView : UIView
- - (instancetype)initWithFrame:(CGRect)frame buttonInfoArray:(NSArray *)array title:(NSString *)title;
- @property (nonatomic, weak) id<KBTitleMoreMenuViewDelegate> delelgate;
- @end
- NS_ASSUME_NONNULL_END
|