Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried the code

UIbutton *bt = new UIbutton;
bt.Font = UIFont.SystemFontSize(35);

But I keep getting a compilation error "Font size is inaccessible due to protection level." Any workaround?

share|improve this question

1 Answer

The error message is far from ideal, but SystemFontSize is property that returns a float, not a method that returns a UIFont.

For that you want:

UIButton button = UIButton.FromType (UIButtonType.RoundedRect);
bt.Font = UIFont.SystemFontOfSize (35)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.