Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Building libraries for iOS — Going native (v2)

Building libraries for iOS — Going native (v2)

As the iOS community grows, code sharing becomes more and more important thing to discuss. In this presentation I'll share my experience of being a library vendor. I'll give an overview of dependency management approaches. In the "Going Native" part I'll explain why it might be a good idea to stay native and master your libraries manually.

Oleksandr Dodatko

June 27, 2014
Tweet

More Decks by Oleksandr Dodatko

Other Decks in Programming

Transcript

  1. The standard library saves programmers from having to reinvent the

    wheel. Bjarne Stroustrup http://bit.ly/1iqZ3JO
  2. #ifdef __OBJC__ #ifdef __cplusplus // Objective-C++ headers go here #import

    "MyObjectiveCppClass.h" #endif // Objective-C headers go here #import <Foundation/Foundation.h> #endif #ifdef __cplusplus // Pure C++ headers go here #include <vector> #endif // Pure C headers go here #include <math.h>