I’m not sure if this is a monotouch, cocoatouch issue or if I’m doing it wrong.
I have this code in my AppDelegate
UILabel.Appearance.BackgroundColor = UIColor.Clear;
And it works on most labels except the ones I create by
va label = new UILabel();
has anyone seen this too?
You must use new UILabel (someRectangle) as the constructor to create your UILabel.