Skip to content

Commit

Permalink
fix(ios): ui glitch in lazyloading fixed (#11402)
Browse files Browse the repository at this point in the history
Fixes TIMOB-27158
  • Loading branch information
vijaysingh-axway authored and sgtcoolguy committed Dec 20, 2019
1 parent 0975d3b commit c00da08
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion iphone/Classes/TiUIListSectionProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,10 @@ - (void)appendItems:(id)args
[_items addObjectsFromArray:items];
id<TiUIListViewDelegateView> theDelegate = [theDispatcher delegateView];
if (theDelegate != nil) {
[theDelegate updateSearchResults:nil];
TiThreadPerformOnMainThread(^{
[theDelegate updateSearchResults:nil];
},
NO);
if ([theDispatcher isKindOfClass:[TiViewProxy class]]) {
[(TiViewProxy *)theDispatcher contentsWillChange];
}
Expand Down

0 comments on commit c00da08

Please sign in to comment.