SqlCipher integration

suggest change

Introduction

SQLite is already a popular API for persistent data storage in iOS apps so the upside for development is obvious. As a programmer you work with a stable, well-documented API that happens to have many good wrappers available in Objective-C, such as FMDB and Encrypted Core Data. All security concerns are cleanly decoupled from application code and managed by the underlying framework.

Remarks

  1. Open the Terminal, switch into your project’s root directory and checkout the SQLCipher project code using Git:

$ git clone https://github.com/sqlcipher/sqlcipher.git

  1. Right click on the project and choose “Add Files to “My App”” (the label will vary depending on your app’s name). Since we cloned SQLCipher directly into the same folder as your iOS app you should see a sqlcipher folder in your root project folder. Open this folder and select sqlcipher.xcodeproj
  1. Select the Build Settings pane. In the search field, type in “Header Search Paths”. Double-click on the field under the target column and add the following path: $(PROJECT_DIR)/sqlcipher/src
  2. Start typing “Other Linker Flags” into the search field until the setting appears, double click to edit it, and add the following value: $(BUILT_PRODUCTS_DIR)/libsqlcipher.a
  3. Start typing “Other C Flags” into the search field until the setting appears, double click to edit it, and in the pop-up add the following value: -DSQLITE_HAS_CODEC
  4. Expand Target Dependencies and click on the + button at the end of the list. In the browser that opens, select the sqlcipher static library target:
  1. Expand Link Binary With Libraries, click on the +button at the end of the list, and select the libsqlcipher.a library.
  1. Finally, also under Link With Libraries, add Security.framework.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


SqlCipher integration:
* SqlCipher integration

Table Of Contents
12 UIView
15 UIColor
26 UIImage
28 CALayer
30 NSDate
40 iBeacon
49 NSTimer
79 NSURL
87 AWS SDK
96 NSData
101 Segues
104 EventKit
105 NSBundle
106 SiriKit
111 StoreKit
117 3D Touch
119 Keychain
122 Block
141 AirDrop
144 UISlider
145 Carthage
146 HealthKit
151 plist
157 MVVM
164 UIPhoenix
166 Simulator
168 NSArray
169 OpenGL
175 Core Data
179 MyLayout
180 UIFont
186 SqlCipher integration
189 Security
200 Codable