Swift中的子模块

前端之家收集整理的这篇文章主要介绍了Swift中的子模块前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有一个应用程序,MyApp是在 Xcode工作区中构建的.在这个工作区内,我有我的框架,Foo和Bar的主要应用程序目标和两个嵌套的Xcode项目.

在我的应用程序内部,我导入Foo和Bar,依赖项将Foo中的对象注入到Bar中的对象中.但是,我说,我不需要所有的Foo,只需要几个类.我怎么能在foo中创建一个子模块并导入它.例如. import Foo.Models.Animals.Dog

虽然你可以做类似的事情
import struct MyModule.MyStruct

import func Darwin.glob

我不确定你是否能比这更深入.这是(free) Swift book的相关报价

“Providing more detail limits which symbols are imported—you can specify a specific submodule or a specific declaration within a module or submodule. When this detailed form is used,only the imported symbol (and not the module that declares it) is made available in the current scope.”

它继续解释您可以导入任何typealias,struct,class,enum,protocol,var或func

看起来Swift对子模块有一些类型的支持(他们在一些地方被提到了),但我不确定我们是否有能力实际编译它们.

原文链接:https://www.f2er.com/swift/319463.html

猜你在找的Swift相关文章