製品 ID のリストを送信した後、Apple Server から受け取った SKProduct の配列を並べ替えようとしています。
以下を使用してソートしたい:
NSSortDescriptor *lowestPriceToHighest = [NSSortDescriptor sortDescriptorWithKey:@"self.price" ascending:YES];
NSArray *sortedProducts = [products sortedArrayUsingDescriptors:[NSArray arrayWithObject:lowestPriceToHighest]];
しかし、エラーメッセージが表示されました: Unable to access variable "lowestPriceToHighest"
Is my sort descriptor defined wrongly?