In general, how to use segue clear;
Here for example there is such a piece of code
override func prepare(for segue: UIStoryboardSegue, sender: Any?) { if segue.identifier == StoryBoard.ShowImageSegue { if let ivc = segue.destination.contentViewController as? ImageViewController { let imageName = (sender as? UIButton)?.currentTitle ivc.imageURL = DemoUrl.NASAImageNamed(imageName: imageName) ivc.title = imageName } } } There is a split view button in it, I click on the button to open the next view controller .
So at what point segue this segue work in this function?
Here in android let's say start Activity() activity start Activity() is understandable and how this line of code will be executed will be sent a request to open the desired activity ...
And in iOS there is no such line and it is not clear at what point this request to open the desired screen flies