Fix bodyContainerView with UITableViewHeaderFooterView and UIVisualEf… (#9)

Summary:
…fectView

Pull Request resolved: https://github.com/facebookincubator/QuickLayout/pull/9

Reviewed By: fabiomassimo

Differential Revision: D88369945

Pulled By: constantine-fry

fbshipit-source-id: 7a72f2be4a7ebc430013b49e244337c4b87d3343
This commit is contained in:
nuomi1 2025-12-04 07:38:42 -08:00 committed by meta-codesync[bot]
parent 21f38de88a
commit edf9ed03d8

View file

@ -72,3 +72,15 @@ extension UITableViewCell {
return contentView
}
}
extension UITableViewHeaderFooterView {
override open var bodyContainerView: UIView {
return contentView
}
}
extension UIVisualEffectView {
override open var bodyContainerView: UIView {
return contentView
}
}