| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // YBCreatorHeader.h
- // YBVideo
- //
- // Created by yunbao02 on 2024/9/14.
- // Copyright © 2024 cat. All rights reserved.
- //
- #ifndef YBCreatorHeader_h
- #define YBCreatorHeader_h
- typedef NS_ENUM(NSInteger,CreatorEvent) {
- Creator_Default,
- Creator_Data_Play, // 播放量
- Creator_Data_Fans, // 粉丝净增
- Creator_Data_FinishPlay, // 完播率
-
- Creator_Bus_Works, // 投稿作品
- Creator_Bus_Plays, // 播放量
- Creator_Bus_Likes, // 点赞量
- Creator_Bus_Finish, // 完播数量
-
- Creator_Fans_All, // 粉丝总数
- Creator_Fans_Add, // 净增
- Creator_Fans_Cancel, // 取关
- Creator_Fans_Sex, // 性别比例
-
- Creator_Sort_Type, // 倒序-正序
- Creator_Sort_Time, // 时间
- Creator_Sort_Sel, // 选中
- Creator_Sort_Close, // 关闭
- };
- typedef void (^CreatorBlock)(CreatorEvent event,NSDictionary *eventDic);
- // 收藏刷新
- typedef void (^CreColRefreshBlock)(void);
- #endif /* YBCreatorHeader_h */
|