AdstirFullscreenView Class Reference¶
Properties¶
delegate¶
スワイプインタースティシャル広告のDelegateを設定してください。 AdstirMraidViewDelegateの詳細はこちらをご覧ください。
@property (weak) id<AdstirMraidViewDelegate> delegate;
media¶
メディアIDを設定します。
@property (nonatomic, copy, asadnonnull) NSString* media;
spot¶
枠Noを設定します。
@property (nonatomic, assign) NSUInteger spot;
autoloadEnabled¶
YESを設定すると、AdstirFullscreenViewがWindowに追加される際に自動でスワイプインタースティシャル広告の読み込みが始まります。 デフォルトではNOが設定されています。
@property (nonatomic, assign, getter=isAutoloadEnabled) BOOL autoloadEnabled;
Class Methods¶
+setTestModeEnabled:¶
テストモードの有効/無効を切り替えます。有効にする場合はYES、無効にする場合はNOを設定してください。デフォルトではテストモードは無効になっています。
+ (void)setTestModeEnabled:(BOOL)enabled;
Parameters¶
- enabled
- テストモードの有効/無効
+testModeEnabled¶
テストモードの有効/無効を取得します。
+ (BOOL)testModeEnabled
Returns¶
- enabled
- テストモードの有効/無効
Instance Methods¶
-initWithAdSize:media:spot:¶
表示されるスワイプインタースティシャル広告のサイズを指定して初期化を行います。
- (instancetype)initWithAdSize:(CGSize)size media:(NSString *)media spot:(NSUInteger)spot
Parameters¶
- size
- 広告サイズ
- media
- メディアID
- spot
- 枠No
-initWithView:media:spot:¶
親ビューに全画面で表示されるように初期化を行います。
- (instancetype)initWithAdSize:(UIView)view media:(NSString *)media spot:(NSUInteger)spot
Parameters¶
- view
- 親ビュー
- media
- メディアID
- spot
- 枠No
-start¶
スワイプインタースティシャル広告の読み込みを行います。
- (void)start
-stop¶
スワイプインタースティシャル広告の読み込みを停止します。
- (void)stop