gpt4 book ai didi

iphone - 我收到警告 : incompatible Objective-C types assigning 'struct NSString *' , 预期为 'struct NSMutableString *'

转载 作者:行者123 更新时间:2023-12-03 16:19:05 26 4
gpt4 key购买 nike

我收到警告:不兼容的 Objective-C 类型在这一行分配“struct NSString *”,预期为“struct NSMutableString *”:-

 Value = [Value stringByAppendingString:str];

我将值声明为

 NSMutableString* Value;

如何纠正这个问题?

最佳答案

使用 NSMutableString 你可以(并且应该)执行以下操作:

[Value appendString:str];

-stringByAppendingString 确实返回 NSString 实例,即使它是在 NSMutableString 上调用的,并且将其转换回可变会导致性能开销和更差的代码可读性。

附注另请注意,在 Objective-C 风格指南中,变量名称应以小写字母开头。

关于iphone - 我收到警告 : incompatible Objective-C types assigning 'struct NSString *' , 预期为 'struct NSMutableString *',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3413989/

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