create
This commit is contained in:
32
ShenQi/WMDragView/DSWebMenuCollectionView.h
Normal file
32
ShenQi/WMDragView/DSWebMenuCollectionView.h
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user