From: Andrei Date: Wed, 27 Feb 2019 21:02:49 +0000 (+0300) Subject: fix https://github.com/xamarin/Xamarin.Forms/issues/5346 (#5379) X-Git-Tag: accepted/tizen/5.5/unified/20200421.150457~484^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2da9f0c3b0543245981b67b3ef9018347cbcc15b;p=platform%2Fcore%2Fcsapi%2Fxsf.git fix https://github.com/xamarin/Xamarin.Forms/issues/5346 (#5379) --- diff --git a/Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs b/Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs index b5c6a7c..f2615bb 100644 --- a/Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs +++ b/Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs @@ -51,6 +51,8 @@ namespace Xamarin.Forms.Platform.iOS public virtual void SetBackgroundColor(UITableViewCell tableViewCell, Cell cell, UIColor color) { + tableViewCell.TextLabel.BackgroundColor = color; + tableViewCell.ContentView.BackgroundColor = color; tableViewCell.BackgroundColor = color; }