diff --git a/tns-core-modules/ui/text-view/text-view.ios.ts b/tns-core-modules/ui/text-view/text-view.ios.ts index 7a952edff..310244486 100644 --- a/tns-core-modules/ui/text-view/text-view.ios.ts +++ b/tns-core-modules/ui/text-view/text-view.ios.ts @@ -95,6 +95,9 @@ export class TextView extends EditableTextBase implements TextViewDefinition { } public _refreshHintState(hint: string, text: string) { + if (this.formattedText) { + return; + } if (text !== null && text !== undefined && text !== '') { this.showText(); } else if (hint !== null && hint !== undefined && hint !== '') {