let path = NSSearchPathForDirectoriesInDomains(.documentDirectory,.userDomainMask, true).first!
do{
self.db = try Connection("(path)/test.sqlite3")
createGeoLocationTableIfNotExists()
}catch let err{
print("sqlite db conntect failed: (err)")
}
在额头上可以正常运行,但是在3分钟后无法在后台运行。我在位置更新中使用。 但是相同的代码在iphone 6 plus中可以正常运行。 在模拟器中都可以正常运行。
有人有解决的办法吗?
谢谢