קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
IMA SDK ל-iOS מאפשר להגדיר הקשר של הפעלה רציפה
בקשה להצגת מודעות.
continuousPlayback
המאפיין מציין ל-SDK אם הנגן מתכוון להפעיל את סרטוני התוכן באופן רציף
בזו אחר זו, בדומה לשידור טלוויזיה. כשהערך מוגדר ל-true, המודעות שמוחזרות מהבקשה הן מודעות ששרת המודעות הגדיר כמתאימות להפעלה רציפה. אם לא מציינים ערך למאפיין הזה, ההגדרה תהיה 'לא ידוע'.
הדוגמה הבאה ממחישה איך להגדיר הפעלה רציפה בבקשה להצגת מודעה.
ההבדל בין הפעלה רציפה של מודעות לבין הפעלה אוטומטית של מודעות
IMA SDK ל-iOS מאפשר גם להגדיר אם הנגן יתחיל לפעול
באופן אוטומטי, או להמתין עד שפעולת המשתמש תתחיל לפעול. כדי לעשות זאת, משתמשים במאפיין
adWillAutoPlay. כשהערך הוא true, המודעות שמוחזרות הן אלה שסווגו על ידי המודעות
המתאים לסביבת הפעלה אוטומטית.
בטבלה הזו מוסבר מתי אפשר לבקש מודעות להפעלה רציפה ואוטומטית, על סמך תוכן הסרטון
המודעות מותאמות.
תוכן וידאו
הערך של continuousPlayback
הערך של adWillAutoPlay
סרטון תוכן יחיד שמופעל לאחר אינטראקציה של המשתמש
false
false
סרטון תוכן יחיד שפועל בהפעלה אוטומטית
false
true
פלייליסט של סרטונים שמפעיל את הסרטון הראשון בעקבות אינטראקציה של המשתמש, אבל מפעיל את הסרטון באופן אוטומטי
הסרטונים הבאים
true
false
פלייליסט של סרטונים שבו הסרטון הראשון מופעל באופן אוטומטי, והסרטונים הבאים מופעלים באופן אוטומטי
[null,null,["עדכון אחרון: 2025-08-01 (שעון UTC)."],[[["\u003cp\u003eThe IMA SDK for iOS allows you to specify whether your content videos will play continuously, influencing the types of ads returned by the ad server.\u003c/p\u003e\n"],["\u003cp\u003eSetting \u003ccode\u003econtinuousPlayback\u003c/code\u003e to \u003ccode\u003etrue\u003c/code\u003e signals that videos will play one after another, like a TV broadcast, and is suitable for video playlists with autoplay.\u003c/p\u003e\n"],["\u003cp\u003eWhile \u003ccode\u003econtinuousPlayback\u003c/code\u003e impacts ad selection, it does not affect ad playback; \u003ccode\u003eadWillAutoPlay\u003c/code\u003e controls whether ads start playing automatically.\u003c/p\u003e\n"],["\u003cp\u003eUse \u003ccode\u003eadWillAutoPlay\u003c/code\u003e set to \u003ccode\u003etrue\u003c/code\u003e when your single content video or video playlist starts playing automatically without user interaction.\u003c/p\u003e\n"],["\u003cp\u003eConsult the provided table to determine the appropriate settings for \u003ccode\u003econtinuousPlayback\u003c/code\u003e and \u003ccode\u003eadWillAutoPlay\u003c/code\u003e based on your specific video content behavior.\u003c/p\u003e\n"]]],[],null,["# Report continuous play\n\nThe IMA SDK for iOS allows for setting the continuous play context for an ads request. The `\n`[continuousPlayback](/interactive-media-ads/docs/sdks/ios/client-side/reference/Classes/IMAAdsRequest#continuousplayback) property notifies the SDK whether the player intends to continuously play the content videos one after another, similar to a TV broadcast. When set to `true`, the ads returned from the request are those designated by the ads server as suitable for continuous play. Not specifying a value for this property leaves the setting as unknown. **Note:** Changing this setting has no impact on ad playback.\nThe following sample demonstrates how to set continuous play in an ads request. \n\n### Objective-C\n\n```objective-c\nIMAAdsRequest *request = [[IMAAdsRequest alloc]\n initWithAdTagUrl:adTagUrl\n adDisplayContainer:[self createAdDisplayContainer]\n avPlayerVideoDisplay:[[IMAAVPlayerVideoDisplay alloc] initWithAVPlayer:self.contentPlayer]\n pictureInPictureProxy:self.pictureInPictureProxy\n userContext:nil];\n request.continuousPlayback = true;\n [self.adsLoader requestAdsWithRequest:request];\n```\n\n### Swift\n\n```swift\nlet request = IMAAdsRequest(\n adTagUrl: adTagUrl,\n adDisplayContainer: createAdDisplayContainer(),\n avPlayerVideoDisplay: IMAAVPlayerVideoDisplay(avPlayer: contentPlayer),\n pictureInPictureProxy: pictureInPictureProxy,\n userContext: nil)\nrequest.continuousPlayback = true;\nadsLoader!.requestAds(with: request)\n```\n\nHow continuous play differs from ad auto-play\n---------------------------------------------\n\nThe IMA SDK for iOS also allows for setting whether the player will start playing automatically or wait for user action to begin playing. This is done using the `\n`[adWillAutoPlay](/interactive-media-ads/docs/sdks/ios/client-side/reference/Classes/IMAAdsRequest#adwillautoplay) property. When set to `true`, the ads returned are those designated by the ads server as suitable for an auto-play environment.\n\n\nThis table details when to request ads for continuous play and auto-play, based on the video content\nthe ads are paired with.\n\n| Video Content | Value for continuousPlayback | Value for adWillAutoPlay |\n|------------------------------------------------------------------------------------------------------|------------------------------|--------------------------|\n| A single content video that plays upon user interaction | `false` | `false` |\n| A single content video that autoplays | `false` | `true` |\n| A video playlist that plays the first video upon user interaction but autoplays the following videos | `true` | `false` |\n| A video playlist that autoplays the first video and autoplays the following videos | `true` | `true` |"]]