迁移到swift3.0报错Could not build Objective-C module 'sqlite3'

迁移到swift3后,sqlite报错 Could not build Objective-C module 'sqlite3'


解决办法:注释掉...

import sqlite3simulator // iOS模拟器
//import sqlite3        // iOS真机设备

在真机运行和编译的时候改成import sqlite3.

因为OC可以设置条件编译,而Swift没有调节编译.

你可能感兴趣的:(迁移到swift3.0报错Could not build Objective-C module 'sqlite3')