Clarifai 2.3.2

Clarifai 2.3.2

TestsTested
LangLanguage Obj-CObjective C
License Custom
ReleasedLast Release Aug 2017

Maintained by John Sloan, Dalmo Cirne.



Clarifai 2.3.2

  • By
  • John Sloan and Jack Rogers

Clarifai Objective-C Client

A client for iOS apps using the Clarifai V2 API.

Getting Started

  1. Create a new XCode project, or use a current one.

  2. Add Clarifai to your Podfile and generate workspace.

    pod 'Clarifai'
    
    pod install
    
  3. Import ClarifaiApp.h and any other classes you need.

    #import ClarifaiApp.h
    
  4. Go to developer.clarifai.com/applications, click on your application, then copy your app's API Key (if you don't already have an account or application, you'll need to sign up first).

  5. Create your Clarifai application in your project.

    ClarifaiApp *app = [[ClarifaiApp alloc] initWithApiKey:@""];
    
  6. That's it! Explore the API docs and guide.

NOTE- to use Clarifai in Swift, make sure to add use_frameworks! to your podfile and import into any swift file using: import Clarifai

Documentation

The most recent docs can be found here on Cocoadocs.

Example Project

There is a simple demo included in the repo to help you get started. To build this project, you need Xcode 8 and CocoaPods. To build and run:

  1. Install dependencies and generate workspace from inside the Example folder.

    pod install
    
  2. Open the workspace in Xcode

    open Clarifai.xcworkspace
    
  3. Go to developer.clarifai.com/applications, click on your application, then copy your app's API Key (if you don't already have an account or application, you'll need to sign up first).

    Add your API Key to the recognizeImage method in RecognitionViewController.m.

  4. Press the "Play" button in the toolbar to build, install, and run the app.