《省钱达人》与《猎豆优选》UI相同版。域名tbk

DRMoreMenuView.h 596B

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