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.
-
Download the Latest iOS SDK release and extract the zip file to your local disk.
-
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.
-
In the project editor, select your app under
TARGETS
. Under theGeneral
tab, openLinked 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)
-
In your target app, click on the
Build Settings
tab and add the-ObjC
flag toOther 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.
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
Copyright (c) 2012-present, Built.io.
All rights reserved.