Since the IOS 10 update I had great difficulties with my app and so far I haven´t been able to find any clue on what he problem could be.
I´m using a framework called SimpleKayChain for storing login details for users. It´s been working great until now. But after the IOS 10 updates all my stored KeyChains are returning NULL. https://github.com/auth0/SimpleKeychain/blob/master/SimpleKeychain/A0SimpleKeychain.h
For Saving KeyChain
[[A0SimpleKeychain keychain] setString:token forKey:tokenConstant];
For returning KeyChain
NSString *token = [[A0SimpleKeychain keychain] stringForKey:tokenConstant];
I would really appreciate some directions regarding how to solve this. Thanks.