暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

UnityAdsFinishState.h 460B

1234567891011121314151617
  1. /**
  2. * An enumeration for the completion state of an ad.
  3. */
  4. typedef NS_ENUM (NSInteger, UnityAdsFinishState) {
  5. /**
  6. * A state that indicates that the ad did not successfully display.
  7. */
  8. kUnityAdsFinishStateError,
  9. /**
  10. * A state that indicates that the user skipped the ad.
  11. */
  12. kUnityAdsFinishStateSkipped,
  13. /**
  14. * A state that indicates that the ad was played entirely.
  15. */
  16. kUnityAdsFinishStateCompleted
  17. };