在发送产品 ID 列表后,我正在尝试对从 Apple 服务器收到的 SKProduct 数组进行排序。
我只想使用以下内容进行排序:
NSSortDescriptor *lowestPriceToHighest = [NSSortDescriptor sortDescriptorWithKey:@"self.price" ascending:YES];
NSArray *sortedProducts = [products sortedArrayUsingDescriptors:[NSArray arrayWithObject:lowestPriceToHighest]];
但我收到错误消息:Unable to access variable "lowestPriceToHighest"
我的排序描述符是否定义错误?