CSJVideoAdEnum.h 820 B

1234567891011121314151617181920212223242526
  1. //
  2. // CSJVideoAdEnum
  3. // CSJAdSDK
  4. //
  5. // Created by cuiyanan on 2019/8/9.
  6. // Copyright © 2019 bytedance. All rights reserved.
  7. //
  8. #ifndef BUVideoAdEnum_h
  9. #define BUVideoAdEnum_h
  10. #import "CSJAdSDKDefines.h"
  11. typedef NS_ENUM(NSUInteger, BUNativeExpressVideoOrientation) {//物料配置方向
  12. BUNativeExpressVideoOrientationPortrait = 1, //竖屏
  13. BUNativeExpressVideoOrientationLandscape = 2, //横屏
  14. };
  15. typedef NS_ENUM(NSUInteger, BUChildTransformDirection) {//子控制器旋转方向
  16. BUChildTransformDirectionNone = 0, //不旋转
  17. BUChildTransformDirectionLeft = 1, //向左旋转
  18. BUChildTransformDirectionRight = 2, //向右旋转
  19. };
  20. FOUNDATION_EXPORT NSString* NSStringFromRitScene(BURitSceneType type);
  21. #endif /* BUVideoAdEnum_h */