objective-c – Unicode格式化编译器警告:Format指定类型’unsigned short’但参数的类型为’int’

objective-c – Unicode格式化编译器警告:Format指定类型’unsigned short’但参数的类型为’int’,第1张

概述这是一个有点强迫症,但我讨厌得到任何编译器警告.当我更新XCode时,我开始收到此编译器警告: Format specifies type ‘unsigned short’ but the argument has type ‘int’ 当我尝试使用以下代码包含Unicode字符的度数时: currentVal = [NSString stringWithFormat:@"%.2f%C", ang 这是一个有点强迫症,但我讨厌得到任何编译器警告.当我更新XCode时,我开始收到此编译器警告:

Format specifIEs type ‘unsigned short’ but the argument has type ‘int’

当我尝试使用以下代码包含Unicode字符的度数时:

currentVal = [Nsstring stringWithFormat:@"%.2f%C",angleDeg,0x00B0];

如何通过更改代码或关闭特定编译器警告来使编译器警告消失?

解决方法 将文字投射到unichar:

currentVal = [Nsstring stringWithFormat:@"%.2f%C",(unichar)0x00B0];
总结

以上是内存溢出为你收集整理的objective-c – Unicode格式化编译器警告:Format指定类型’unsigned short’但参数的类型为’int’全部内容,希望文章能够帮你解决objective-c – Unicode格式化编译器警告:Format指定类型’unsigned short’但参数的类型为’int’所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存