Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-13121] (3_2_X) Ensure touchdelegate is set if we are not going to reconstruct the row. #5082

Merged
merged 1 commit into from
Dec 6, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions iphone/Classes/TiUITableViewRowProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,13 @@ -(void)triggerUpdateIfHeightChanged
[self triggerRowUpdate];
} else {
DeveloperLog(@"Height does not change. Just laying out children. Height %.1f",curHeight);
//TIMOB-13121. Ensure touchdelegate is set if we are not going to reconstruct the row.
if ([rowContainerView superview] != nil) {
UIView* contentView = [rowContainerView superview];
[[self children] enumerateObjectsUsingBlock:^(TiViewProxy *proxy, NSUInteger idx, BOOL *stop) {
[self redelegateViews:proxy toView:contentView];
}];
}
[callbackCell setNeedsDisplay];
}
} else {
Expand Down