You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
289 B
23 lines
289 B
![]()
2 years ago
|
//
|
||
|
// Enum.h
|
||
|
// ChineseAgri-businesses
|
||
|
//
|
||
|
// Created by ecell on 2022/6/30.
|
||
|
//
|
||
|
|
||
|
#ifndef Enum_h
|
||
|
#define Enum_h
|
||
|
|
||
|
typedef NS_ENUM(NSInteger,TableisReload){
|
||
|
/// 上拉
|
||
|
TableisReload_h,
|
||
|
/// 下拉
|
||
|
TableisReload_f,
|
||
|
/// 删除
|
||
|
TableisReload_d
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif /* Enum_h */
|