0

I have a framework that using with some cocoa pods. now I'm trying to create SDK from the framework, but don't show all the classes, how do I do it?

Jonas
  • 121,568
  • 97
  • 310
  • 388

1 Answers1

0

Make sure that the public keyword is in front of your class declaration - they changed the scope default from public by default to private.

amok
  • 1,736
  • 4
  • 20
  • 41