我有一个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];
可能吗?