diff --git a/RxExample/RxExample/Examples/WikipediaImageSearch/Views/iOS/WikipediaSearchCell.swift b/RxExample/RxExample/Examples/WikipediaImageSearch/Views/iOS/WikipediaSearchCell.swift index 8592b493..917161d6 100644 --- a/RxExample/RxExample/Examples/WikipediaImageSearch/Views/iOS/WikipediaSearchCell.swift +++ b/RxExample/RxExample/Examples/WikipediaImageSearch/Views/iOS/WikipediaSearchCell.swift @@ -37,7 +37,7 @@ public class WikipediaSearchCell: UITableViewCell { self.URLOutlet.text = viewModel.searchResult.URL.absoluteString ?? "" viewModel.imageURLs - >- self.imagesOutlet.rx_subscribeItemsWithIdentifierTo("ImageCell") { (_, _, URL, cell: CollectionViewImageCell) in + >- self.imagesOutlet.rx_subscribeItemsWithIdentifierTo("ImageCell") { [unowned self] (_, _, URL, cell: CollectionViewImageCell) in let loadingPlaceholder: UIImage? = nil cell.image = self.imageService.imageFromURL(URL)