12345678910111213141516171819202122 |
- //
- // DRMoreMenuView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/17.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class DRMoreMenuView;
- @protocol YHMoreMenuViewDelegate<NSObject>
- - (void)morenMenu:(DRMoreMenuView *)menuView Button:(UIButton *)button clickIndex:(NSInteger)index;
- @end
- @interface DRMoreMenuView : UIView
- - (instancetype)initWithFrame:(CGRect)frame buttonInfoArray:(NSArray *)array title:(NSString *)title;
- @property (nonatomic, weak) id<YHMoreMenuViewDelegate> delelgate;
- - (UIButton *)getButtonWithIndex:(NSInteger)index;
- @end
|