NSSuperscriptAttributeName 显示错误?

发布于 2024-11-30 13:24:15 字数 508 浏览 2 评论 0原文

我正在尝试使用 NSMutableAttributedString 在 iphone 中创建下标文本。但是“NSSuperscriptAttributeName”显示一些错误“未声明的标识符”。我该如何解决它?

NSDictionary * superscriptAttrs = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:1] 
                                                                  forKey:NSSuperscriptAttributeName];
    NSAttributedString * st = [[NSAttributedString alloc] initWithString:@"st"
                                                              attributes:superscriptAttrs];

I am trying to create a subscripted text in iphone using NSMutableAttributedString. But the "NSSuperscriptAttributeName" show some error " undeclared identifier ". How can i solve it?

NSDictionary * superscriptAttrs = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:1] 
                                                                  forKey:NSSuperscriptAttributeName];
    NSAttributedString * st = [[NSAttributedString alloc] initWithString:@"st"
                                                              attributes:superscriptAttrs];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似最初 2024-12-07 13:24:15

假设您使用的是 iOS,您需要使用一组不同的常量,您可以在以下位置找到这些常量 此处

在您的情况下,NSSuperscrptAttributeName应该是kCTSuperscriptAttributeName

Assuming that you're on iOS, you need to use a different set of constants which you can find here.

In your case NSSuperscrptAttributeName should be kCTSuperscriptAttributeName.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文