YBCreatorHeader.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // YBCreatorHeader.h
  3. // YBVideo
  4. //
  5. // Created by yunbao02 on 2024/9/14.
  6. // Copyright © 2024 cat. All rights reserved.
  7. //
  8. #ifndef YBCreatorHeader_h
  9. #define YBCreatorHeader_h
  10. typedef NS_ENUM(NSInteger,CreatorEvent) {
  11. Creator_Default,
  12. Creator_Data_Play, // 播放量
  13. Creator_Data_Fans, // 粉丝净增
  14. Creator_Data_FinishPlay, // 完播率
  15. Creator_Bus_Works, // 投稿作品
  16. Creator_Bus_Plays, // 播放量
  17. Creator_Bus_Likes, // 点赞量
  18. Creator_Bus_Finish, // 完播数量
  19. Creator_Fans_All, // 粉丝总数
  20. Creator_Fans_Add, // 净增
  21. Creator_Fans_Cancel, // 取关
  22. Creator_Fans_Sex, // 性别比例
  23. Creator_Sort_Type, // 倒序-正序
  24. Creator_Sort_Time, // 时间
  25. Creator_Sort_Sel, // 选中
  26. Creator_Sort_Close, // 关闭
  27. };
  28. typedef void (^CreatorBlock)(CreatorEvent event,NSDictionary *eventDic);
  29. // 收藏刷新
  30. typedef void (^CreColRefreshBlock)(void);
  31. #endif /* YBCreatorHeader_h */