gpt4 book ai didi

objective-c - 如何将 int 转换为 NSString?

转载 作者:IT老高 更新时间:2023-10-28 12:21:56 29 4
gpt4 key购买 nike

我想在 Objective C 中将 int 转换为 NSString

我该怎么做?

最佳答案

可以使用 @() 表达式将基元转换为对象。所以 shortest 方法是将 int 转换为 NSNumber并使用 stringValue 获取字符串表示方法:

NSString *strValue = [@(myInt) stringValue];

NSString *strValue = @(myInt).stringValue;

关于objective-c - 如何将 int 转换为 NSString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1372715/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com