12345678910111213141516171819202122232425262728 |
- //
- // LDCollcecitonMenuIView.h
- // YouHuiProject
- //
- // Created by liuxueli on 2019/1/17.
- // Copyright © 2019 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "LDMineToolModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @class LDCollcecitonMenuIView;
- @protocol YHMoreMenuCollectionViewDelegate<NSObject>
- - (void)morenCollectionMenu:(LDCollcecitonMenuIView *)menuView ClickModel:(LDMineToolModel *)model;
- @end
- @interface LDCollcecitonMenuIView : UIView<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
- @property(nonatomic,strong)UICollectionView *collectionView;
- - (instancetype)initWithFrame:(CGRect)frame buttonInfoMenuArray:(NSArray *)array title:(NSString *)title;
- @property(nonatomic,strong)NSMutableArray *toolsArray;
- @property(nonatomic,assign)id<YHMoreMenuCollectionViewDelegate>delegate;
- @end
- NS_ASSUME_NONNULL_END
|