I have this piece of code ...
guard let filePath = Bundle.main.path(forResource: "AppIcon", ofType: "png") else {
print("Image not found")
return nil
}
This is returning nil, which I can't seem to figure out. I assume my file path is wrong. Any suggestions?