I'm making a static library product. I want to use ARC but one of my customer want to target their app to iOS 3.2. They also want to target ARMv6 architecture.
OK. I have to accept the requirement. As I know, ARC without weak
reference is just compiler feature, so I think there's no difference in static library itself or it will not require iOS 4.0. But as I know, Apple limited minimum iOS as 4.0. So I cannot decide this myself, because I have no 3.2 device :(
Is here anyone who tested ARC code on iOS 3.2? If it runs well, I will transit to ARC, and compile my library with ARC, and pass the library to my customer. I think I can force them to use 4.0, but I'm not sure about ARMv6. Of source there is no reason ARMv6 will not work, but the fact that I cannot test makes me to worry. Please let me know about your experience.