gpt4 book ai didi

ios - XCode 5 中的错误接收器类型 'void' 错误

转载 作者:行者123 更新时间:2023-12-01 18:17:31 26 4
gpt4 key购买 nike

我在 Xcode 5 中收到“Bad receiver type 'void'”错误。我正在使用以下代码,

方法定义:

- (BOOL)allItemsSelectedFrom:(NSSet *)original selectedItems:(NSMutableArray *)selecteds{

NSLog(@"original = %@", original);

for (id object in original)
if([[object display] intValue]==1)
if (![selecteds containsObject:[object name]])
return NO;
int k=0;
for (id object in original)
{
if([[object display] intValue]==1)
k++;
}
//if(k==[selecteds count] && ([selecteds count]!=0))
if(k==[selecteds count])
return YES;
else
return NO;
}

方法调用:
        BOOL allItemsSelected = [self allItemsSelectedFrom:profile.chemotherapies selectedItems:chemotherapies];

如何在 Xcode 5 中解决此问题?

还有一件事,它在 Xcode 4.6.3 中工作正常,没有发生错误..

enter image description here

最佳答案

它与xcode没有任何关系。它与基本 sdk header 有关
编译器不知道使用什么方法显示,因为有很多

将 ID 的转换添加到您正在使用的对象,以便它使用正确的显示方法

关于ios - XCode 5 中的错误接收器类型 'void' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20369343/

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