SwiftのPathからNSBundle参照を取得したい。
Objective-cのように>
NSBundle* languageBundle = [NSBundle bundleWithPath:path];
Swiftで同じことを達成する方法。
このようにして、Swiftでそれを行うことができます。
let languageBundle = NSBundle(path: path)
これを試して
var path = NSBundle.mainBundle()//path until your project name.app
var pathForFile = NSBundle.mainBundle().pathForResource("Filename", ofType: "db")// path of your file in bundle
スウィフト4:
var pathForFile = Bundle.main.path(forResource: "Filename", ofType: "db")
Swift 3:
let bundleFromPath = Bundle(path: path)
バンドルからファイルのリストをロードするには:
let docPath = Bundle.main.resourcePath! + "/" + bundleName + ".bundle"
let fileManager = FileManager.default
do {
let filesFromBundle = try fileManager.contentsOfDirectory(atPath: docPath)
print(filesFromBundle)
} catch {}