BBAPopMenuView.h
562 Bytes
//
// BBAPopMenuView.h
// BBAComs
//
// Created by Wu,Huanqing on 2017/6/1.
//
//
#import <UIKit/UIKit.h>
#import "BBAPopMenuItemModel.h"
@class BBAPopMenuView;
@protocol BBAPopMenuViewDelegage <NSObject>
- (void)menu:(BBAPopMenuView *)menu didSelectItemAtIndexPath:(NSIndexPath *)indexPath;
@end
@interface BBAPopMenuView : UIView
@property (nonatomic, strong) NSArray<BBAPopMenuItemModel *> *menuItems;
@property (nonatomic, weak) id<BBAPopMenuViewDelegage> delegate;
// 指定主题模式
@property (nonatomic, copy) NSString *assignThemeMode;
@end