Reputation: 16430
I've written a custom framework in swift. This framework has a lot of classes... and all these classes have been marked as public.
public class Person{
...
}
When I import my framework into another project I would expect to be able to use the Person
class since it has been marked as public but I'm actually getting an error message saying that Person is an undeclared type.
These are the steps that I follow to include the framework into my project:
import MYFramework
Am I missing anything?!
Upvotes: 0
Views: 91