In my app I have a folder named "CSS"
with file named "style.css"
in it.
When I try to load it, I get this error :
Fatal error: Unexpectedly found nil while unwrapping an Optional value
This is the code where I am trying to load it :
let path = Bundle.main.path(forResource: "style", ofType: "css", inDirectory: "CSS")!
let cssString = try! String(contentsOfFile: path).trimmingCharacters(in: .whitespacesAndNewlines)