Files
WebApp/ShenQi/WMDragView/DSWebMenuCollectionView.h
2024-12-20 17:49:45 +08:00

33 lines
772 B
Objective-C

//
// DSWebMenuCollectionView.h
// VietnamGame
//
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSInteger, DSWebMenuType) {
DSWebMenuHomeType, // 主页
DSWebMenuTelegramType, // Telegram
DSWebMenuWhatsAppType, // WhatsApp
DSWebMenuFacebookType, // Facebook
};
@protocol DSWebMenuDelegate <NSObject>
-(void)webMenuCollectionViewWithMenuType:(DSWebMenuType)webMenuType;
@end
@interface DSWebMenuCollectionView : UICollectionView <UICollectionViewDelegate,UICollectionViewDataSource>
@property (nonatomic, weak) id<DSWebMenuDelegate> webMenuDelegate;
@property (nonatomic, strong) NSMutableArray <NSNumber *>*shareArray;
@end
NS_ASSUME_NONNULL_END