热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

iPhone:如何在UILabel字符串文本中添加“度”符号?-iPhone:Howtoadd“Degree”symbolinUILabelstringtext?

Iwanttoincludedegreesymbolforweatherreportas45degreeC.Howtoadddegreesymbolinstr

I want to include "degree" symbol for weather report as 45 degree C. How to add degree symbol in string to include that UILabel?

我想将气象报告的“度”符号包含为45度c,如何在字符串中添加度符号来包含那个UILabel?

If anybody knows it, please share to me.

如果有人知道,请告诉我。

Thank you.

谢谢你!

4 个解决方案

#1


77  

Shift-option-8?

Shift-option-8吗?

#2


3  

NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:@"80\u00b0c"];
    [attributedString setAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"Helvetica-light" size:10.0]
                                      , NSBaselineOffsetAttributeName : @22} range:NSMakeRange(2, 2)];
    //asign this as a 
examplelabel.attributedtext = attributedString;

#3


3  

In Xcode 8.0: Press Control+Command+Space Bar or Xcode->Edit->Emoji & Symbols, later search the degree symbols from pop-up screen. You can easily add UILabel or TextView components.

在Xcode 8.0中:按控制+命令+空格条或Xcode->编辑->表情符号&符号,之后在弹出的屏幕上搜索度数符号。您可以很容易地添加UILabel或TextView组件。

#4


1  

In Swift

在斯威夫特

cell.lblTemperature.text = NSString(format:"23%@", "\u{00B0}") as String

推荐阅读
author-avatar
shidainetwork
珠海市世代网络科技有限公司是一家高端企业网站建设公司,为您提供网站建设服务、网站建设设计、网站制作推广、手机网站建设、动态网站制作、网站设计、微信小程序开发、网络营销推广、网站SEO及微网站等的科技有限公司。我们拥有一支团结协作、素质过硬、一流的技术团队,始终坚持以品质和创新为 核心价值,依靠先进的技术和开创性的思维空间,打造和运营新一代网络精品。 网址:http://www.shidainetwork.cn/
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有