How to build a static library with maximum compatibility in iOS?

I am writing a static library for ios developers.

How to build a static library with maximum compatibility in iOS? In other words, support for various types of projects in the future. For example, version 3.0 ~, the ARC / non-ARC project, xib / storyboard, simulator / iphone / ipad.

What are the most important things I should consider?

  • Establish a deployment target to verify compatibility.
  • use 'lipo' to combine lib towing platform?
  • Do not use ARC in my code?

any suggestion? Thank!

+5
source share
1 answer
+2

All Articles