I am working on a framework for iOS, which comes with some datafiles. To load them into a Dictionary
I do something like this:
public func loadPListFromBundle(filename: String, type: String) -> [String : AnyObject]? {
guard
let bundle = Bundle(for: "com.myframework")
let path = bundle.main.path(forResource: filename, ofType: type),
let plistDict = NSDictionary(contentsOfFile: path) as? [String : AnyObject]
else {
print("plist not found")
return nil
}
return plistDict
}
If I use this in a playground with the framework, it works as intended.
But if I use the framework embedded in an app, it doesn't work anymore, the "path" now points to the bundle of the app, not of the framework.
How do I make sure that the bundle of the framework is accessed?
EDIT: the code above resides in the framework, not in the app.
EDIT2: the code above is a utility function, and is not part of a struct or class.
question from:
https://stackoverflow.com/questions/44086009/path-to-bundle-of-ios-framework 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…