从pod库中读取图像

时间:2017-02-08 04:44:25

标签: ios swift3

在我的pod中,我已下载了一个库。该库下有资源 - > assets.bundle - >图像列表。我试图访问我的一个库,如下所示,但我一直在致命的错误:在解开一个Optional值时意外地发现了nil。怎么解决?

        let imageView = UIImageView(image: UIImage(named: "sa"))
        imageView.contentMode = UIViewContentMode.center
        imageView.frame = CGRect(x:0.0, y:0.0, width:imageView.image!.size.width + 20.0, height: imageView.image!.size.height)

1 个答案:

答案 0 :(得分:0)

而不是:

Process p = Runtime.getRuntime().exec("cmd /C start /wait filepath.bat");
int exitVal = p.waitFor();

你可以从pod libs获得图像,如bellow:

    let imageView = UIImageView(image: UIImage(named: "sa"))