How do you make a programmatic segue? I tried this:
[self performSegueWithIdentifier:@"next" sender:self];
but it only gives me this console message:
Snapshotting a view that has not been rendered results in an empty snapshot.
Ensure your view has been rendered at least once before snapshotting or snapshot after screen updates.
What I want to do is Have a button which triggers a image picker to appear. When the user has selected an image, a segue to the next view controller is performed.