We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following piece of code appears to no longer work:
NYTPhotosViewController *photosViewController = [[NYTPhotosViewController alloc] initWithPhotos:photos]; [self presentViewController:photosViewController animated:YES completion:nil];
I am just now upgrading from an older version of NYTPhotoViewer and I use the equivalent piece of Swift code:
NYTPhotoViewer
var photosViewController = NYTPhotosViewController(photos: photos) present(photosViewController, animated: true)
It appears that the argument photos: does not exist. Can someone please advise me on how to upgrade my code to the current version?
photos:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following piece of code appears to no longer work:
I am just now upgrading from an older version of
NYTPhotoViewer
and I use the equivalent piece of Swift code:It appears that the argument
photos:
does not exist. Can someone please advise me on how to upgrade my code to the current version?The text was updated successfully, but these errors were encountered: