3

我只是将我的 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'

现在,我应该如何使用它?

4

2 回答 2

3
nameTextView.Font = UIFont.FromName(UIFont.PreferredBody.Name, 10);
于 2013-10-31T09:41:09.523 回答
0

http://www.raywenderlich.com/50151/text-kit-tutorial

本教程链接用于自定义文本工具包属性。检查这可能是它的帮助充分。

self.textView.font = [UIFont PreferredFontForTextStyle:UIFontTextStyleBody]; self.textView.font = [UIFont PreferredFontForTextStyle:UIFontTextStyleHeadline];

在 iOS 7 中,语法发生了变化。类似于 HTML 属性。

于 2013-10-31T08:58:04.330 回答