Skip to content

raweng/BuiltIOBackend-iOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BuiltIOBackend SDK for iOS

The BuiltIO Backend helps you to create iOS apps quickly and effortlessly, taking care of all the backend requirements. For more information see the website and getting started.

Installation Options

Manual
  1. Download the Latest iOS SDK release and extract the zip file to your local disk.

  2. Drag and drop BuiltIO.framework into your project folder in Xcode.

    A window will appear, prompting you to choose one of the options for adding files. Click the ‘Destination’ checkbox to copy items into the destination group’s folder. This will add the SDK to your project.

  3. In the project editor, select your app under TARGETS. Under the General tab, open Linked Frameworks and Libraries and add the following libraries:

    • Accounts.framework (iOS)
    • CFNetwork.framework (iOS)
    • CoreGraphics.framework (iOS|WatchOS)
    • CoreLocation.framework (iOS|WatchOS)
    • CoreTelephony.framework (iOS)
    • MobileCoreServices.framework (iOS|WatchOS)
    • Security.framework (iOS|WatchOS)
    • Social.framework (iOS)
    • SystemConfiguration.framework (iOS)
    • libicucore.tbd (iOS|WatchOS)
    • libsqlite3.tbd (iOS|WatchOS)
  4. In your target app, click on the Build Settings tab and add the -ObjC flag to Other Linker Flags.

Add the following line to your Podfile in your desired target:

target '<iOSTargetName>' do
platform :ios, '7.0'
pod 'BuiltIOBackend'
end

target '<WatchAppTarget>' do
platform :ios, '7.0'
pod 'BuiltIOBackend'
end

Run pod install, and you should now have the latest BuiltIOBackend release.

Import Header/Module

You can import header file in Objective-C project as:

 #import <BuiltIO/BuiltIO.h>

You can also import as a Module:

//Objc
@import BuiltIO

//Swift
import BuiltIO

Other Links

License

Copyright (c) 2012-present, Built.io.
All rights reserved.