gpt4 book ai didi

iphone - 不兼容的指针类型将 'NSSortDescriptor *__strong' 发送到 'NSArray * 类型的参数

转载 作者:行者123 更新时间:2023-11-28 18:11:43 24 4
gpt4 key购买 nike

我正在使用以下方式对我的 NSSet 进行排序:

NSSortDescriptor *descriptor = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];
[[testSet.questions allObjects] sortedArrayUsingDescriptors:descriptor]; // warning

但它会引起警告:

Incompatible pointer types sending 'NSSortDescriptor *__strong' to parameter of type 'NSArray *

最佳答案

您要在需要数组的地方传递单个描述符,试试这个:

[testSet.questions allObjects] sortedArrayUsingDescriptors:@[descriptor]];

关于iphone - 不兼容的指针类型将 'NSSortDescriptor *__strong' 发送到 'NSArray * 类型的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17228877/

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