I coded to resize the label size but obviously the font size is read-only.
subject[idx] = NGUITools.AddChild(mPanel, mLabelPrefab);
label = subject[idx].GetComponent<UILabel>();
label.font.size = 14;
When the labels are instantiated, they are automatically set at 1, 1, 1.
What can I do?