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