Error called trying to get Bundle URL

你说的曾经没有我的故事 提交于 2020-01-11 13:51:02

问题


I am getting an error when I try to get a path of an audio file I have.

let path = Bundle.main.path(forResource: "SaveALife", ofType: "mp3")!

In the console I receive this:

Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)

Any help? Thanks.


回答1:


Make sure SaveALife.mp3 should be in your bundle. Also when you drag and drop the file please check copy bundle resources.




回答2:


I will go with @Rob, You must have spelled the resource name incorrectly or the file is not there in the bundle. And by providing "!" you are forcing to get string path, but as the file is not there Or due to spelling mismatch the file is not found in bundle, the return path would be nil, and due to "!" it tries to unwrap the nil which results the crash.

So the solution is remove the "!" like below

let path = Bundle.main.path(forResource: "SaveALife", ofType: "mp3")

Or else if you definitely want to use "!", You must have to give correct resource path and confirm that the resource must be there in the bundle.

Hope it helps.

Happy coding ...



来源:https://stackoverflow.com/questions/40034776/error-called-trying-to-get-bundle-url

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!