CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

MOBReview 2.0

MOBReview 2.0

Maintained by Moballo, LLC.



  • By
  • Jason Morcos - Moballo, LLC

MOBReview

A simple platform for prompting users to write reviews


Import with CocoaPods

  use_frameworks!
  pod 'MOBReview'

Initialization and Setup

AppDelegate.swift

At the top of the file

import MOBReview

Inside of "application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool"

MOBReview.incrementOpen()

ViewController.swift

Inside of "viewDidLoad"

if MOBReview.shouldAsk(cutoff: 20) {
  MOBReview.promptReview(appID: APPLE_APP_ID, appName: APP_NAME, closure: (() -> Swift.Void)?)
}

Easy as pie! Enjoy!