I have an iOS library that I created. Most recently, I sent this library to a .framework file .framework only some .h files. Now I would like to use Cocoapods instead of a frame.
Is it possible to hide .m files and set only some header files (for example, using the framework)?
According to this question, I do not understand the relationship between the podspec source_files and public_header_files settings.
I suggested that public_header_files would be my required parameter, but I don't understand what this property does.
Edit: I think I misunderstood the design of Cocoapods. public_header_files seems to make sense when using the use_framework! parameter use_framework! . Perhaps I will try Carthage.
source share