Consider:
- A Swift framework called
FrameworkA
that defines the typeThing
. - A Swift framework called
FrameworkB
that also defines the typeThing
and the typeFrameworkA
. - An app that imports both frameworks in the same Swift file.
How do I reference FrameworkA.Thing
in said file? The following line fails with Thing is not a member of FrameworkA
.
let t : FrameworkA.Thing? = nil