gpt4 book ai didi

ios - 不寻常的 stringWithFormat : argument

转载 作者:行者123 更新时间:2023-11-28 19:01:44 27 4
gpt4 key购买 nike

如果这是一个菜鸟问题,我深表歉意。

我一直在关注this关于 mapkit 的教程,我无意中发现了这行代码

NSString *json = [NSString stringWithFormat:formatString,
centerLocation.latitude,
centerLocation.longitude,
0.5 * METERS_PER_MILE];

至少对我来说这是不寻常的原因是它缺少其中包含 %@ 标志的 nsstring。该教程声称我们正在将纬度和经度信息添加到 json 中。

但是当我打印出 formatString 和 json 时,输出是相同的。

我以前从未见过以这种方式使用 nsstrings。是否有正在设置的隐藏变量?

有人可以向我解释这个 nsstring 对象(名为 json)如何包含这 4 个参数吗?

最佳答案

在代码的其他地方,formatString 必须像这样定义:

NSString *formatString = @"latitude=%f, longitude=%f, %f = half the number of meters in a mile";

确保你的测试看起来像这样:

NSLog(@"the format is %@ and the json is %@", formatString, json);

它们看起来不应该一样。它们看起来相同的唯一方法是格式字符串不引用任何格式说明符,如下所示:

NSString *formatString = @"I'm a silly format with no percent format specifiers";

Here's a good intro on the topic来自 Apple。

关于ios - 不寻常的 stringWithFormat : argument,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24377382/

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