diff --git a/nativescript-core/ui/core/view/view.ios.ts b/nativescript-core/ui/core/view/view.ios.ts index 789d765779..327bca8efe 100644 --- a/nativescript-core/ui/core/view/view.ios.ts +++ b/nativescript-core/ui/core/view/view.ios.ts @@ -61,7 +61,7 @@ export class View extends ViewCommon implements ViewDefinition { this._privateFlags |= PFLAG_FORCE_LAYOUT; const nativeView = this.nativeViewProtected; - if (nativeView) { + if (nativeView && nativeView.setNeedsLayout) { nativeView.setNeedsLayout(); }