I have an app with buttons with text that works fine on android and ios devices except iphone6. On iphone6 the button is there, but the text doesn’t show. This app was built with Unity 4.5.4f1. Here’s what I’m doing:
GUIStyle custom = new GUIStyle(“Button”);
custom.fontSize = Screen.width/30;
if (GUI.Button(rect, buttonText, custom)
{
…
Any ideas what could be wrong?