123456789101112131415161718192021222324252627 |
- //
- // CGXCategoryViewDefines.h
- // CGXVerticalMenuView-OC
- //
- // Created by CGX on 2018/05/01.
- // Copyright © 2019 CGX. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- static const CGFloat CGXVerticalMenuViewAutomaticDimension = -1;
- typedef NS_ENUM(NSUInteger, CGXCategoryListCellClickedPosition) {
- CGXCategoryListCellClickedPosition_Left,
- CGXCategoryListCellClickedPosition_Right,
- CGXCategoryListCellClickedPosition_Top,
- CGXCategoryListCellClickedPosition_Bottom,
- };
- // cell被选中的类型
- typedef NS_ENUM(NSUInteger, CGXCategoryListCellSelectedType) {
- CGXCategoryListCellSelectedTypeSelect, //点击选中 或者滚动
- CGXCategoryListCellSelectedTypeClick, //点击选中
- CGXCategoryListCellSelectedTypeScroll //滚动选中
- };
|