MobileTableCustomCell not Displaying correctly in landscape

Having an issue with table with custom cells not displaying correctly in landscape mode portrait always works fine. This only happens on iPhones with the notch (like 11 xx) in top of the screen (for speaker I guess) . On iPad and iPhones without a notch ( say iPhone 6) the table displays perfect in portrait and landscape.

Any thoughts? Thanks.

I would guess it’s because of your table’s Auto-Layout constraints. You probably have a “Top” constraint relative to “Parent”. Can you try deleting the “Top” constraint and add a “Bottom” constraint relative to “TopLayoutGuide” and set the Edge to “Bottom”?

I assume you are talking about the iosmobileTable? The customtablecell itself does not have any constraints. The labels in to customtablecell do.

Thanks