标签: ios swift nsbundle
NSBundle.mainBundle().pathForResource()为什么不输入if?
NSBundle.mainBundle().pathForResource()
答案 0 :(得分:2)
ofType函数的pathForResource参数的参数需要是文件扩展名,而不是mime类型。所以你可能只想要"xml",而不是"text/xml"。
ofType
pathForResource
"xml"
"text/xml"