Revises Entitlements UI on app detail page

This commit is contained in:
Riley Testut
2023-05-25 18:03:21 -05:00
parent 04a237843b
commit a3813ace54
3 changed files with 127 additions and 41 deletions

View File

@@ -116,6 +116,12 @@ 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()
}
}
}
}