ios – UILabel中monotouch的下划线文本(移植ObjC代码)

ios – UILabel中monotouch的下划线文本(移植ObjC代码),第1张

概述我想强调UILabel中的文字. 我找到了以下ObjC代码: NSDictionary *underlineAttribute = @{NSUnderlineStyleAttributeName: @1}myLabel.attributedText = [[NSAttributedString alloc] initWithString:@"Test string" 我想强调UILabel中的文字.
我找到了以下ObjC代码:

NSDictionary *underlineAttribute = @{NSUnderlinestyleAttributename: @1}myLabel.attributedText = [[NSAttributedString alloc] initWithString:@"Test string"                                                      attributes:underlineAttribute];

我正在尝试将其移植到C#,但它无法正常工作.
我正在尝试以下方法:

var keys = new object[] { "NSUnderlinestyleAttributename" };var objects = new object[] { 1 };NSDictionary underlineAttribute = NSDictionary.FromObjectsAndKeys(objects,keys);label.AttributedText = new NSAttributedString(@"Test",underlineAttribute);

而不是1,我也尝试了“1”和NSUnderlinestyle.Single,但没有任何工作

有任何想法吗?

谢谢

解决方法 试试这个:

label.AttributedText = new NSAttributedString (    "Test",underlinestyle: NSUnderlinestyle.Single);
总结

以上是内存溢出为你收集整理的ios – UILabel中monotouch的下划线文本(移植ObjC代码)全部内容,希望文章能够帮你解决ios – UILabel中monotouch的下划线文本(移植ObjC代码)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1076438.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存