あなたがする必要がある -
- (void)fall:(int)i {
// manipulate image[i]; separately from the for loop
}
そして次のように呼び出します-
- (void)main {
for (int i=0; i <= 100; i++) {
[image fall:i];
}
}
編集 -
インデックスを渡したい場合-
- (void)fall:(int)i {
// manipulate image[i]; separately from the for loop
}
そして次のように呼び出します-
- (void)main {
for (int i=0; i <= 100; i++) {
[self fall:i]; // Now from here you can either pass index
}
}
画像を渡したい場合 -
- (void)fall:(UIImage)i {
// manipulate image[i]; separately from the for loop
}
そして次のように呼び出します-
- (void)main {
for (int i=0; i <= 100; i++) {
[self fall:imageI]; // Now from here you need to pass image, if that image is stored in array, then fetch from array. Or you need to manipulate in the way in which you are storing.
}
}