Revises Entitlements UI on app detail page

This commit is contained in:
Riley Testut
2023-05-25 18:03:21 -05:00
committed by Magesh K
parent 8f9cf96f3d
commit 26c173c479
3 changed files with 127 additions and 41 deletions

View File

@@ -116,6 +116,12 @@ final class AppContentViewController: UITableViewController
if self.appDetailCollectionViewHeightConstraint.constant != permissionsHeight && permissionsHeight > 0
{
self.appDetailCollectionViewHeightConstraint.constant = permissionsHeight
UIView.performWithoutAnimation {
// Update row height without animation.
self.tableView.beginUpdates()
self.tableView.endUpdates()
}
}
}
}