Fixes retain cycle in example app.

This commit is contained in:
Krunoslav Zaher 2015-06-08 00:52:36 +02:00
parent cce1e2c43c
commit 0aa9a33dff
1 changed files with 1 additions and 1 deletions

View File

@ -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)