By default, cell nodes in table view should fill its width. So the min constrained width is updated to enforce this behaviour.

This commit is contained in:
Huy Nguyen
2015-08-21 17:22:55 +03:00
parent 60cf43766b
commit 641929c4e5
2 changed files with 3 additions and 1 deletions

View File

@@ -791,7 +791,8 @@ void ASPerformBlockWithoutAnimation(BOOL withoutAnimation, void (^block)()) {
}
// Default size range
return ASSizeRangeMake(CGSizeZero, CGSizeMake(_maxWidthForNodesConstrainedSize, FLT_MAX));
return ASSizeRangeMake(CGSizeMake(_maxWidthForNodesConstrainedSize, 0),
CGSizeMake(_maxWidthForNodesConstrainedSize, FLT_MAX));
}
- (void)dataControllerLockDataSource