2
我在寫my framework
,這取決於other framework
。 My framework
可以訪問other framework
中的所有公共類型和協議。但是當我在project
中包含my framework
時,project
不能使用other framework
中的任何公共類型。Swift框架訪問級別
是否可以啓用project
訪問other framework
中的所有公衆?
我有兩個解決方案:
- 使用
public typealise T = OtherProject.T
,但有太多的類型。 - 還導入
Other framework
在project
,它需要額外的依賴。
有沒有更好的方法來做到這一點?