I have created a custom ios framework, which I intend to distribute without source. Previously it was supposed to support devices with min iOS 5. But now it is decided to enable support from iOS 4.3
Now I face 2 primary issues.
My framework is ARC enabled. Can developers use the framework in ARC enabled / ARC disabled projects? How to use.
I use NSJSON As this is only available since iOS 5. I think I have to use something like JSON kit.
base sdk usage. Since I use ARC, if I decide to use baseSDK as 4.3, xCode will attach libarc along with my framework.
Please advice.