Porto iOS - PassBack AdMob插頁

SDK Document

若需在 iOS 應用程式中呈現 ClickForce 廣告,只要在您的 Xcode 專案中導入 SDK,然後在使用者介面中加入相關指令就行了。

SDK導入說明

選擇欲加入SDK方式,進行下載SDK檔案,並完成以下三項前置步驟:


A.在本蓋版廣告專案中選擇欲加入SDK方式,進行下載SDK檔案,並參照所對應加入方式進行操作。

B.在 Build Settings 內 Other Linker Flags 請填入 -all_load 與 -ObjC。

C.App Transport Security Settings,需進行設定。

基本設定


iMFAD Framework 加入方式


在TARGETS-開啟 General 分頁下的 Embedded Binaries 下拉式選單,
然後用畫面上出現的 +按鈕加入。





修改Build Settings

在專案設定選項中的 Build Settings下的 Other Linker Flags 加入-ObjC-all_load



修改info.plist


iOS9 App Transport Security Settings


1.加入步驟為 新增App Transport Security Settings , 並在底下新增Allow Arbitrary Loads ,將其設為 YES


開始建立 蓋版廣告


MFInterstitialView 參數設定與說明


* 以下必須使用方法

取得MFInterstitialView物件


設定廣告版位ID


必要設定 UIViewController


使用 MFInterstitialViewDelegate


開始請求廣告

顯示廣告

* 以下為選擇使用方法

設定是否輸出除錯(debug)訊息

Parameters

* 以下使用無廣告框架方法

取得MFInterstitialView物件

Parameters


MFInterstitialViewDelegate Method 說明


接收廣告失敗

接收廣告成功

接收點擊廣告

接收廣告關閉

接收無廣告框架


宣告及引入


請在需要引入廣告的地方加入#import <UIKit/UIKit.h>,並加入MFInterstitialViewDelegate


#import <UIKit/UIKit.h>
#import <iMFAD/iMFAD.h>

// 增加一個protocol接收廣告狀態
@interface ViewController : UIViewController<MFInterstitialViewDelegate>
{
    MFInterstitialView *fullbanner; // 宣告使用蓋版廣告
}

@end



以下程式碼會在 viewController的 viewDidLoad 初始化步驟中建立蓋版廣告。


#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
        
    fullbanner = [[MFInterstitialView alloc]init];;
    fullbanner.bannerId = @"7358" ;
    fullbanner.rootViewController = self;
    fullbanner.delegate = self;
    [fullbanner requestFullScreenAD];

}

-(void)onRequestItstAdSuccess
{
    //顯示蓋版廣告
    [fullbanner show];   
}

- (void)onClickItst
{
    NSLog(@"點擊蓋版廣告");
}

-(void)onCloseItst
{
    NSLog(@"蓋版廣告關閉");
}



- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


@end


取得結果



上次更新:2018/03/28。