gpt4 book ai didi

objective-c - 另一个 : NSString Compare Not Working in Objective-C

转载 作者:行者123 更新时间:2023-12-04 03:11:35 26 4
gpt4 key购买 nike

我正在尝试使用 IsEqualToString 方法(我以前成功使用过)。但是我收到以下错误:

-[NSCFString IsEqualToString:]: 无法识别的选择器发送到实例 0xa055e7b0

代码如下:

@interface EditHabitViewController : UIViewController<UITableViewDataSource,UITableViewDelegate> {

NSString *contactId;
}
@property (nonatomic, retain) NSString *contactId;


-(void)updateContactInfo {
NSString *sSQL = @"";
NSString *sCheck= self.contactId;

// nothing to load? then leave:
if ([sCheck IsEqualToString: @"0"]) {
return;
} // end if

注意 sCheck 和 contactId 都声明为 NSString。这真让我抓狂!

如有任何帮助,我们将不胜感激。

最佳答案

您在 IsEqualToString: 中有一些错误的大写 - 请尝试使用 isEqualToString:

关于objective-c - 另一个 : NSString Compare Not Working in Objective-C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/910431/

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