- Version: 1.5.6
- Released: 2020/11/26
- Supported: iOS 8.0+ (Xcode 11+)
maio はこれまでのバナー広告に加え、新たな広告収益の機会を得ることが可能な動画広告プラットフォームです。 バナー広告と違い、デベロッパーの設定したタイミングで、動画広告をコンテンツの一部として配信することができます。
また、動画広告再生後にアプリ内通貨やライフ等の報酬(リワード)をユーザーに還元する事で、動画広告の再生数が増加し、収益の最大化が見込めます。
今までユーザーが離脱していたポイントに 動画広告 + リワード
を入れる事で、ユーザーのストレスを解消しアクティブ率を向上させる事も可能です。
maioを導入したいプロジェクトのPodfile
に、以下の内容を追加します。
pod 'MaioSDK'
[Maio startWithMediaId:delegate:]
を呼び出し、maio SDKの初期化を開始します。
// AppDelegate.m
#import <Maio/Maio.h>
@implementation AppDelegate
- (BOOL) application: (UIApplication *) application didFinishLaunchingWithOptions: (NSDictionary *) launchOptions {
// 広告の配信テスト設定を行います。アプリをリリースする際にはコメントアウトしてください。
[Maio setAdTestMode: YES];
// maio SDKの初期化を開始します。
// MAIO_MEDIA_ID は、Maio管理画面より割り当てられたメディアIDに差し替えてください。
[Maio startWithMediaId: @"MAIO_MEDIA_ID" delegate: nil];
}
@end
[Maio canShow]
で、表示準備が完了したか確認し、[Maio showWithViewController:]
で表示します。
#import <Maio/Maio.h>
@implementation ViewController
- (IBAction) showAd: (UIButton*) sender {
if ([Maio canShow]) {
[Maio showWithViewController:self];
}
}
@end
releases から最新のリリースバージョンをダウンロードして下さい。
日本語 wiki/Get-Started
English wiki/Get-Started
English wiki/API-Reference
日本語 wiki/FAQ
English wiki/FAQ
- General
- Technical Trouble Shooting