Closed inamiy closed 7 years ago
@@ master #85 diff @@
==========================================
Files 52 52
Lines 2982 3024 +42
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
+ Hits 2765 2805 +40
- Misses 217 219 +2
Partials 0 0
Powered by Codecov. Last update 13884f3...8ad0a99
Thanks for submitting, I should have a chance to look at this in a day or two.
It seems composite view's subviews e.g.
UIButton
's subviews (UIImageView
andUIButtonLabel
) gets removed and displays nothing when:1.
makeViews
is called twiceviewReuseId
(UIButton will be reused)This is because
purgeViews
is removing views even though some of them are not managed by LayoutKit, so I addedisLayoutKitView
for safe view removal.