Use UIBarStyle.Black and set Translucent = true rather than using UIBarStyle.BlackTranslucent.

This commit is contained in:
Cody Russell 2012-03-26 22:13:30 -05:00
Родитель fa02d65ac2
Коммит dee2942e23
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -119,7 +119,8 @@ public partial class ToolbarViewController : UIViewController {
break;
case 2:
toolbar.BarStyle = UIBarStyle.BlackTranslucent;
toolbar.BarStyle = UIBarStyle.Black;
toolbar.Translucent = true;
break;
}