We got the Vidyo SDK working great opening the first time. Everything works great, much based on the SDK code example. When call is done and the view is change we use viewDidDisappear and set:
[[NSNotificationCenter defaultCenter] removeObserver:self];
[vc disconnect];
[vc disable]; // releases the camera, mic, speaker
vc = nil;
[VCConnectorPkg uninitialize];
How every if we the start a new call we get EXC_BAD_ACCESS when calling the view. Using Zombie in xcode gives me the following error:
*** -[LmiVideoCapturerImplementationAVFoundation retain]: message sent to deallocated instance 0x131f7f940
It feels like there is something we are not terminating correct, what are we missing?