というint
変数がありますpageIndicator
。
別の変数の中に含めたいので、コードを数行節約できます。
これは私が持っているものです:
Products *productPage0 = [productArray objectAtIndex:0];
Products *productPage1 = [productArray objectAtIndex:1];
Products *productPage2 = [productArray objectAtIndex:2];
Products *productPage3 = [productArray objectAtIndex:3];
そして、これは私が欲しいものです:
Products *productPage(@"%d", pageIndicator) = [productArray objectAtIndex:pageIndicator];
出来ますか?