0

I am working on application in which I need to support iOS 8 onwards devices. Application used iOS contacts So I need to add both ABAddress and contacts framework. I am facing a strange problem with Xcode 8 that ABAddressFramework not found at run time and application crashed. I have added the framework in Link Binary With Library with required tag. Please provide your input on this.

nynohu
  • 1,628
  • 12
  • 12
Saurav Nagpal
  • 1,247
  • 1
  • 10
  • 27

2 Answers2

0

Besides checking for iOS 8 and iOS 9 to call functions,

make sure the framework that's not available on iOS 8 is set as Optional

enter image description here

SG iOS Developer
  • 158
  • 2
  • 10
0

Finally I resolved the issue and I tried removing and adding the ABAdressFramework and it works. I think Order is also playing important role:

https://github.com/OceanLabs/iOS-Print-SDK/issues/257enter image description here

Saurav Nagpal
  • 1,247
  • 1
  • 10
  • 27