NSSuperscriptAttributeName 显示错误?
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用的是 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 bekCTSuperscriptAttributeName
.