diff --git a/Example/NYTViewController.m b/Example/NYTViewController.m index 110d2468..6a504027 100644 --- a/Example/NYTViewController.m +++ b/Example/NYTViewController.m @@ -55,7 +55,7 @@ - (void)updateImagesOnPhotosViewController:(NYTPhotosViewController *)photosView for (NYTExamplePhoto *photo in dataSource.photos) { if (!photo.image && !photo.imageData) { photo.image = [UIImage imageNamed:@"NYTimesBuilding"]; - photo.attributedCaptionSummary = [[NSAttributedString alloc] initWithString:@"Photo which previously had a loading spinner (reopen the photo viewer and scroll to here to see it)" attributes:@{NSForegroundColorAttributeName: [UIColor whiteColor], NSFontAttributeName: [UIFont preferredFontForTextStyle:UIFontTextStyleBody]}]; + photo.attributedCaptionSummary = [[NSAttributedString alloc] initWithString:@"Photo which previously had a loading spinner (to see the spinner, reopen the photo viewer and scroll to this photo)" attributes:@{NSForegroundColorAttributeName: [UIColor whiteColor], NSFontAttributeName: [UIFont preferredFontForTextStyle:UIFontTextStyleBody]}]; [photosViewController updatePhoto:photo]; } }