I have a project which I am migrating from Obj-C to Swift 3.0 (and I am quite a noob in Swift).
How do I translate this line?
NSString *folder = [[[N
You can do something like this:
let folderURL = resourceURL(to: "myfolder") func resourceURL(to path: String) -> URL? { return URL(string: path, relativeTo: Bundle.main.resourceURL) }