I recently added OneDrive integration to my project and it works fine except for when I try to release the objects that use the SDK files.
I have tracked the cause down to calls on deallocated instances.
In the dealloc calls for LiveConnectClientCore and LiveAuthRefreshRequest, cancel methods are called on objects that have been deallocated.
All this stems from a pointer I have to a LiveConnectClient
@property (nonatomic, strong) LiveConnectClient *liveClient;
Any help would be greatly appreciated.