SwipeView
SwipeView copied to clipboard
fix iOS 7 autoLayout crash.
I got this crash message: “Auto Layout still required after executing -layoutSubviews”
Adding [self layoutIfNeeded] in the end of - (void)layoutSubviews will fix.
+1
I would really like to see this merged, too.
I have update the pull request to remove [self layoutIfNeeded], which will sometimes cause infinite loop.
Instead put [super layoutSubviews] in the end of -layoutSubviews will fix the “Auto Layout still required after executing -layoutSubviews” issue.
This needs to be merged !
I readlly like seeing this merged!!!