GithubHelp home page GithubHelp logo

quangphamfork / sourcekit-mraid-ios Goto Github PK

View Code? Open in Web Editor NEW

This project forked from twcmediakit/sourcekit-mraid-ios

0.0 2.0 0.0 493 KB

Nexage Integration SourceKit for MRAID

License: Other

Objective-C 33.96% C++ 58.19% JavaScript 7.85%

sourcekit-mraid-ios's Introduction

Nexage Integration SourceKit for MRAID

Nexage Integration SourceKit for MRAID is an easy to use library which implements the IAB MRAID 2.0 spec (http://www.iab.net/guidelines/508676/mobile_guidance/mraid). It is written in Objective-C and works in both iPhone and iPad applications.

Features:

  • MRAID 2 implementation
  • Handles full/fragment HTML
  • 4 level logging
  • Integrates with just a few lines of code
  • ARC support

Requirements:

Getting Started

Step 1: Include MRAID & "SourceKitCommon" Xcode projects. Please make sure that you clone SourceKitCommon Github repository in the same folder level as MRAID.

Step 2: Import these header file(s) into your project:

#import "SKLogger.h"
#import "SKMRAIDView.h"
#import "SKMRAIDInterstitial.h"
#import "SKMRAIDServiceDelegate.h"

Edit Build Phases under target

Target Dependencies - Add MRAID & SourceKitCommon projects
Link Binary with Libraries - Add libMRAID.a & libSourceKitCommon.a

Step 3: Create an SKMRAIDView and add it to your container view, as in this example:

For a Banner:

 SKMRAIDView *bannerView = [[SKMRAIDView alloc] initWithFrame:CGRectMake(0, 0, 320, 50)
                                 withHtmlData:htmlData
                                  withBaseURL:bundleUrl
                            supportedFeatures:@[MRAIDSupportsSMS, MRAIDSupportsTel]
                                     delegate:self
                              serviceDelegate:self
                           rootViewController:self];

[self.view addSubview:bannerView];

Note: You must provide the creative content as a string along with a baseURL. The creative may be either an HTML fragment or full HTML.

For an Interstitial:

	self.interstitial = [[SKMRAIDInterstitial alloc]
							initWithSupportedFeatures:@[MRAIDSupportsCalendar]
                                		 withHtmlData:htmlData
                                          withBaseURL:bundleUrl
                                             delegate:self
                                      serviceDelegate:self
                                   rootViewController:self];

Wait for the SKMRAIDInterstitialDelegate 'mraidInterstitialAdReady:' callback and do the following when the Ad is ready to be shown on screen:

[mraidInterstitial show];

Inspect ad availabilith with [mraidInterstitial isAdReady] before you play the ad.

Step 4: (Optional) To see logging:

[SKLogger setLogLevel:SourceKitLogLevelDebug];   // select desired log level

Step 5: (Optional) Implement the SKMRAIDServiceDelegate Protocol if you wish to listen for and take action on MRAID calendar, storePicture, inlineVideo, and open browser events.

That's it!

LICENSE

Copyright (c) 2013, Nexage, Inc.
All rights reserved.
Provided under BSD-3 license as follows:

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of Nexage nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

sourcekit-mraid-ios's People

Contributors

muthuka avatar

Watchers

Quang Pham avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.