Crash when dismissed
ahmadmssm opened this issue · comments
In VoiceOverlayController
-> showRecordingScreen -> line number 112, app crash due to trying to set a de-allocated object, i fixed it by replacing un-owned
with weak
and making self optional -. self?, So please fix it.
@spinach thanks for that, it works.
One more thing, could you add the following function to allow dismissing the voice overlay view ?!
public func dismiss() {
self.inputViewController?.dismiss(animated: true, completion: nil)
}