我正在开发一个使用一些 url 的 iPhone 应用程序,并且在将整数附加到它们的末尾时遇到了困难。我有以下代码行
NSURL *urlCards = [[NSURL alloc] initWithString:(@"http://website.edu/get_stuff/%@",[NSString stringWithFormat:@"%d",_stuffID])];
我只需要在末尾附加一个 int 即可。当我打印出 NSURL urlCards 的结果时,我只是得到了我传入的 int 的值,或者 _deckID 的值。
我已经验证了仅声明为本地 int 的 _deckID 在运行时确实具有正确的值。
我错过了什么?
谢谢!!