Cards icon indicating copy to clipboard operation
Cards copied to clipboard

IOS14 XCODE BETA 4 : Return black screen after dismiss CardView

Open WhiteAvocad0 opened this issue 3 years ago • 5 comments

Hi there, Version : Xcode 12 beta4 with IOS 14 Issue : Return to black screen after dismiss detail view tried to change cardContentVC.modalPresentationStyle = (.fullScreen) but not working for me

WhiteAvocad0 avatar Aug 07 '20 16:08 WhiteAvocad0

I'm having the same issue! Does anyone have any fixes? Version: Xcode 11 with iOS 13 Issue: Returns a black screen after dismissing detail view Also attempted changing the cardContentVC.modalPresentationStyle = .fullScreen

domogami avatar Aug 12 '20 04:08 domogami

see issue it worked for me Cheers!

coderluka avatar Oct 04 '20 10:10 coderluka

I was able to get it working! It's so smooth and fluid!

domogami avatar Oct 08 '20 17:10 domogami

having same black screen issue after dismiss present View ?

please anyone help

santespatel avatar Oct 18 '21 06:10 santespatel

In the function "shouldPresent" of file Card.swift add the following code: under detailVC.isFullscreen = fullscreen need add if fullscreen { detailVC.modalPresentationStyle = .fullScreen } else { detailVC.modalPresentationStyle = .currentContext }

it worked for me

Dreamer4ik avatar Apr 12 '22 17:04 Dreamer4ik