I try to get a Bundle path in Swift 3 yet it always says 'unresolved identifier Bundle' whenever I use: guard let Path = Bundle.main.path(ResolvedName: name , ofType : type)
.
Has Swift now changed the use Bundle? or do I have to create some type of NSBundle Value like a variable before I can use these identifiers?
I have searched the Web and can't seem to find anything which solves the problem.
Here is my Code:
import Foundation
enum PlistError: ErrorType {
case invalidResource
case parsingFailure
}
class PlistLoader {
static func array(fromFile name: String, ofType type: String) throws -> [[String: String]] {
guard let path = Bundle.main.path(forResource: name, ofType: type) else {
throw PlistError.invalidResource
}
guard let array = NSArray(contentsOfFile: path) as? [[String: String]] else {
throw PlistError.parsingFailure
}
return array
}
}
class ContactsSource {
static var contacts: [Contact] {
let data = try! PlistLoader.array(fromFile: "ContactsDB", ofType: "plist")
return data.flatMap { Contact(dictionary: $0) }
}
}