Set the background of the results view controller to white to avoid any black patches.

This commit is contained in:
Arturo Espinosa 2013-10-30 15:02:35 -06:00
Родитель 97fcc52acd
Коммит 947b3f4762
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -85,6 +85,7 @@ namespace HttpClient
InvokeOnMainThread (delegate {
var view = new UIViewController ();
view.View.BackgroundColor = UIColor.White;
var label = new UILabel (new RectangleF (20, 60, 300, 80)){
Text = "The HTML returned by the server:"
};