// // DSWebMenuCollectionView.h // VietnamGame // // #import #import "LinkConfig.h" #import "MacroDefine.h" NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSInteger, DSWebMenuType) { DSWebMenuHomeType, // 回到菜单 DSWebMenuRefreshType, // 刷新 DSWebMenuTelegramType, // Telegram DSWebMenuWhatsAppType, // WhatsApp DSWebMenuFacebookType, // Facebook DSWebMenuNotiType, // 推送中心 }; @protocol DSWebMenuDelegate -(void)webMenuCollectionViewWithMenuType:(id)webMenuType; @end @interface DSWebMenuCollectionView : UICollectionView @property (nonatomic, weak) id webMenuDelegate; @property (nonatomic, strong) NSMutableArray *shareArray; @end NS_ASSUME_NONNULL_END