Reputation: 727
Can we link iOS Static Library built with older SDK with an app that is built with newer iOS SDK ? Thanks in advance.
Upvotes: 0
Views: 61
Reputation: 6427
Yes..you can link static library built with older SDK only when this library use iOS api which are not outdated. But in case if this library use depricated iOS API, according to Apple, "A method identified as deprecated has been superseded and may become unsupported in the future." Therefore chances are your app will gets crash on access of outdated api of iOS.
Upvotes: 4