PopMenuHeader.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // PopMenuHeader.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/3/6.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. #ifndef PopMenuHeader_h
  8. #define PopMenuHeader_h
  9. #pragma ********************************** 枚举 ***********************
  10. #pragma mark - 照片选择cell的类型
  11. typedef NS_ENUM(NSUInteger, STDynamicSelectType) {
  12. STDynamicSelectTypeDefault = 0,
  13. STDynamicSelectPhoto = 1, //相片
  14. STDynamicSelectVideo = 2, // 视频
  15. };
  16. #pragma mark - 微信模块
  17. typedef NS_ENUM(NSUInteger, STDynamicWeChatType) {
  18. STDynamicWeChatTypeDefault = 0,
  19. STDynamicWeChatShelve = 1, //未出售
  20. STDynamicWeChatSold = 2, // 已经出售
  21. };
  22. #pragma mark - 转场方式
  23. typedef NS_ENUM(NSUInteger, STViewCTransitionType) {
  24. STViewCTransitionTypeOfPush = 0, //psuh
  25. STViewCTransitionTypeOfModal = 1, //Model
  26. STViewCTransitionOfChild = 2, // addSubView/aadChildViewC
  27. };
  28. #pragma mark -写真模块
  29. typedef NS_ENUM(NSUInteger, STPhotoEditType) {
  30. STPhotoEditTypeDefault = 0, // 默认显示bg 其余img hidden
  31. STPhotoEditPayPhoto = 1, //编辑付费
  32. STPhotoEditPhotoCover = 2, // 编辑相册封面
  33. };
  34. #pragma ********************************** 头文件 ***********************
  35. //模块- 动态管理中心
  36. #import "PopMenuCenter.h"
  37. //模块-5- 视屏动态
  38. #import "VideoDynamicViewC.h"
  39. #endif /* PopMenuHeader_h */