1

我对 xcode 中的 Swift iOS 编程非常陌生。无论出于何种原因,我的 NSBundle.mainBundle() 都能够在代码库中找到图像文件,

var path = NSURL(fileURLWithPath: NSBundle.mainBundle()
     .pathForResource("icon", ofType: "png")!)

返回一个非零字符串。

但是,我在同一目录中有一个“DER”格式的公共 CA 证书。

path = NSURL(fileURLWithPath: NSBundle.mainBundle()
    .pathForResource("cacer", ofType: "der")!)

返回零。

有什么建议可以给吗?需要任何额外的信息吗?

4

1 回答 1

1

看起来cancer.der没有引用到应用程序目标。
确保该文件的复选框已打开:
截屏

于 2015-08-21T15:02:06.473 回答