gpt4 book ai didi

ios - 如何在 View Controller 中使用 NSString 更正这些错误?

转载 作者:行者123 更新时间:2023-12-01 19:20:15 27 4
gpt4 key购买 nike

我正在将 Integer 转换为 NSString,我有一些代码,但有 11 个错误。

这是我正在使用的代码:

@interface GameViewController : UIViewController {

积分;
NSString *stringscore;
NSString stringscore = [NSString stringWithFormat:@"d",score];
}

我该如何修复这些错误?

最佳答案

您在格式字符串中省略了 % ,并且不需要第二个 NSString

stringscore = [NSString stringWithFormat:@"%d",score];

尽管在这种情况下,您可以将变量定义和赋值全部放在一行中:
NSString* stringscore = [NSString stringWithFormat:@"%d",score];

愚蠢更新

在我发帖(半睡半醒)的狂热中,我没有看到这一切都是在@Interface 中完成的。

如果应该在接口(interface)和实现之间进行拆分.. 以下是如何完成的示例:
@interface GameViewController : UIViewController  {

int score;
NSString *stringscore;
}
@end

@implementation GameViewController

-(void)SomeMethod
{
score = 123;
stringscore = [NSString stringWithFormat:@"%d",score];
}
@end

关于ios - 如何在 View Controller 中使用 NSString 更正这些错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10688084/

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