diff --git a/Sources/QuickLayout/QuickLayoutBridge/ViewImplementation/HasBody.swift b/Sources/QuickLayout/QuickLayoutBridge/ViewImplementation/HasBody.swift index 81a1ab6..bd6212e 100644 --- a/Sources/QuickLayout/QuickLayoutBridge/ViewImplementation/HasBody.swift +++ b/Sources/QuickLayout/QuickLayoutBridge/ViewImplementation/HasBody.swift @@ -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 + } +}