fix Xamarin iOS PlotViewRenderer crash #458

This commit is contained in:
Thomas Ibel 2015-04-22 21:42:00 +02:00
Родитель d0c158c184
Коммит f3293cd539
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -40,7 +40,7 @@ namespace OxyPlot.Xamarin.Forms.Platform.iOS
Controller = this.Element.Controller Controller = this.Element.Controller
}; };
if (this.Element.Model.Background.IsVisible()) if (this.Element.Model != null && this.Element.Model.Background.IsVisible())
{ {
plotView.BackgroundColor = this.Element.Model.Background.ToUIColor(); plotView.BackgroundColor = this.Element.Model.Background.ToUIColor();
} }