When I set the preview mode to selectable the app is restarted at the home screen. However, I want really to look at a secondary screen reached by clicking a navigation link icon on the main screen. In this mode clicking the icon selects it but doesn't activate it. This seems like a catch 22. How could I get to the secondary screen in selectable mode? Is there a key/click combination that does a real click in selectable mode so I can get to it?
Xcode preview selectable mode real click/tap
Hi,
No, there isn't a way to interact with the Selectable version of the preview. What you'll need to do is defined a #Preview
/PreviewProvider
that is of that secondary screen so that you can view it in the Selectable mode.
Hope that helps!
Ah OK - got it! Many thanks for your reply.