From 593b2890d54d8f6cd01b6235fab811094c74b662 Mon Sep 17 00:00:00 2001 From: Daniele Margutti Date: Fri, 9 Jun 2017 09:11:18 +0200 Subject: [PATCH] Link to medium article --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23e186c..5d72675 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ It allows you to stack vertically `UIViewController` instances where the view is a simple fixed-height `UIView` or a `UICollectionView` or `UITableView`. ## Motivation -A full article about the motivation behind this class is available on Medium (or in my personal blog). Check it here for full details about how the class works. +A full article about the motivation behind this class [is available on Medium](https://medium.com/@danielemargutti/efficient-scrolling-uistackview-in-swift-99f3d75fb12e) (or in my [personal blog](http://danielemargutti.com/2017/06/09/efficient-scrolling-uistackview-in-swift/)). Check it here for full details about how the class works. UITableView and UICollectionView are great when you need to display a number of relatively simple cells; when your layout became complex you may need to create different UIViewController which manages each different kind layout. These view controller may contains simple fixed-height `UIView` or complex `UICollectionView`/`UITableView`; in these cases you need to be careful because expading your scrollviews will destroy internal iOS caching mechanism.