In my app, Most frameworks is weak linked. As I read the document, I consider that maybe I needn't weak-link these frameworks.
Setting of my app
My app's deployment target is iOS4.3 and the base SDK is iOS7.1.
My idea
In my app I use CIImage
and UICollectionView
. CIImage
is in CoreImage
framework which is available after iOS5.0, so I should weak-link CoreImage
framework. UICollectionView
is available in iOS6.0 in UIKit framework, but UIKit is available in iOS4.3, so I needn't weak-link UIKit
framework.
Am I right ?