You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TableViewTests exposed an inadequacy in the algorithm
that searched for cells that are off the screen.
This commit addresses that by scrolling to the last visible row
then scrolling the section by CGRect. Both are needed to
make this hack work.
if ([indexPathsForVisibleRows containsObject:indexPath]) {
270
-
continue;
270
+
@autoreleasepool {
271
+
//scroll to the last row of each section before continuing. Attemps to ensure we can get to sections that are off screen. KIF tests (e.g. testButtonAbsentAfterRemoveFromSuperview) fails without this line. Also without this... we can't expose the next section (in code downstream)
0 commit comments