Arjuna
Arjuna

Reputation: 727

Using iOS Static Library built with older SDK

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

Answers (1)

SachinVsSachin
SachinVsSachin

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

Related Questions