Skip to content

Commit

Permalink
Merge pull request #3996 from mstepanov/timob-13121
Browse files Browse the repository at this point in the history
[TIMOB-13121] always relegate views when display table view cell
  • Loading branch information
vishalduggal committed Mar 21, 2013
2 parents e294e22 + f95c437 commit 531fecf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion iphone/Classes/TiUITableViewRowProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -782,15 +782,18 @@ -(void)configureChildren:(UITableViewCell*)cell
[proxy setSandboxBounds:rect];
}
[proxy windowWillOpen];
[uiview transferProxy:proxy deep:YES];
[proxy setReproxying:YES];
[uiview transferProxy:proxy deep:YES];
[self redelegateViews:proxy toView:contentView];
if (uiview == nil) {
[rowContainerView addSubview:[proxy view]];
}
[proxy setReproxying:NO];
}];
} else {
[[self children] enumerateObjectsUsingBlock:^(TiViewProxy *proxy, NSUInteger idx, BOOL *stop) {
[self redelegateViews:proxy toView:contentView];
}];
[rowContainerView setFrame:rect];
[contentView addSubview:rowContainerView];
}
Expand Down

0 comments on commit 531fecf

Please sign in to comment.