I am using xcode8 + swift3.1. My project is targeting iOS 8.0.
I would like to use SQLite framework directly without using 3rd party wrapper.
When I do:
import SQLite
I got compiler error that no such module 'SQLite'
. Then, I followed the answer here for xcode8.1+Swift3 with following steps:
- I go to project's Build Phases
- I search for SQLite framework in "Link Binary With Libraries"
here, when I search for SQLite, I got:
As you can see, I got libsqlite3.tbd
, under iOS 10.3 folder.
My question is, does it mean user with iOS prior to 10.3 not able to use my app because I am using iOS 10.3 SQLite framework? Does the folder name iOS 10.3
hint that?
(My project target is iOS 8.0)