I create a framework using swift, and then I create a test project to check if the framework goes well.
The framework has two classfile named "pubUtils" and "utils".
In my test project, I can only use the public class PubUtils. I cannot use the Utils class, because it cannot find it. And the method in the PubUtils must be public if I want to use them. I donnot know it is that Apple design or something I make mistakes.