我只是将我的montouch更新为xamarin.iOS 7.0.2。在此之前,我在我的项目中有这个代码:
nameTextView .Font = new UIFont ().WithSize (10);
但现在不行。
我面对这个错误:
Error CS0619: `MonoTouch.UIKit.UIFont.UIFont()' is obsolete: `This constructor does not return a valid, default, instance'
现在,我应该如何使用它?
答案 0 :(得分:3)
nameTextView.Font = UIFont.FromName(UIFont.PreferredBody.Name, 10);
答案 1 :(得分:0)
<强> http://www.raywenderlich.com/50151/text-kit-tutorial 强>
本教程链接用于自定义文本工具包属性。请检查这可能是完整的帮助。
self.textView.font = [UIFont preferredFontForTextStyle:UIFontTextStyleBody]; self.textView.font = [UIFont preferredFontForTextStyle:UIFontTextStyleHeadline];
在iOS 7中,语法被更改。它就像HTML属性。