【Swift】遍历Bundle里的图片资源

遍历Bundle里的图片资源

func bundleTest() {
        let mainBundle = Bundle.main.bundlePath
        print(mainBundle)
        let path2 = ""
        let fileManager = FileManager.default
        let files = fileManager.subpaths(atPath: mainBundle)
        print(files ?? [""])
        let array: NSMutableArray = []
        if let fileArray = files {
            for imageName in fileArray {
                if imageName.hasSuffix(".png") || imageName.hasSuffix(".jpg") {
                    let path = mainBundle.appending(imageName)
                    array.add(path)
                }
            }
        }
        print(array)
    }
}
上一篇:unittest2框架------执行原理


下一篇:第 20 题:请描述一下 BFC、IFC、GFC 和 FFC 的区别?