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.
|
// |
|
// 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 */
|
|
|