我们可以比较 NSString 和 NSMutableString
例如...
NSString string1 = @"Hello world";
NSMutableString string2 = [NSMutableString stringWithString: string1];
那么...那么我们可以使用以下语句来比较它们吗...?或者还有其他办法吗?
if(string1 isEqualToString:string2)
请帮帮我...
for example...
NSString string1 = @"Hello world";
NSMutableString string2 = [NSMutableString stringWithString: string1];
then... then can we compare these using following statement..? or there is any other way?
if(string1 isEqualToString:string2)
help me out please...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的当然。 NSMutableString 是 NSString,因此您的代码完全正确,除了一些语法错误(您错过了每个
NSString
上的*
和[
]
在if
语句上您应该编写:yes of course. an NSMutableString is an NSString, so your code is perfectly correct, except for some syntax errors (you missed the
*
on eachNSString
and the[
]
on theif
statement. You should write :