1

With the introduction of module (via @import), is there still a need to link Apple's own framework using the old way, or is that only useful for external framework only?

Should we remove all native SDK frameworks from the Frameworks folder to clean things up?

Boon
  • 37,606
  • 51
  • 186
  • 296
  • 1
    Take a look at [this](http://stackoverflow.com/a/18947634/251513). – Mat Nov 10 '13 at 09:19
  • Thanks, I am familiar with the concept of module. I want to know if linking of framework is still useful with the advent of it. – Boon Nov 10 '13 at 13:24

1 Answers1

0

all #import and #include directives are mapped to use @import automatically for Apple framework - @import is the way to go! In regards to the clean up, You can remove them. There was a bug in some cocoapods though where it didn't recognise the framework unless it was #import though, but I think this bug has been fixed now.

stktrc
  • 1,466
  • 18
  • 30