2

I am from c++ background and in c++ world, if I create an static library with any specific version of a compiler, then it is advisable to use same version of compiler for binary which will use this static library.

Is this statement true for Objective C static library as well? or if I have Objective C static library compiled with XCode X & and executable compiled with XCode Y still there will be no conflict?

Sahil Doshi
  • 1,073
  • 10
  • 23

1 Answers1

0

Yes no conflicts. Migration of my legacy project on Objective-C to Xcode 12 was done without problems: just opened and compiled. Despite my colleagues: they had to continue working with Xcode 10 and 11 on swift projects.

Objective-C is ABI, Module and Source stable language like C, despite C++ and Swift

Cy-4AH
  • 4,370
  • 2
  • 15
  • 22