配列の最後の要素に到達した場合にボタンの画像を変更してチェックを取得し、そのボタンをクリックして最初から開始する方法を教えてください。ここに私のコード、私を助けてください
-(IBAction)changenext:(id)sender
{
static int j = 0;
backimg.enabled=TRUE;
if(sender == nextimg)
j++;
else if(sender == backimg)
j--;
if (j >= arcount)
{
j = 0;
}
else if(j < 0)
{
j = arcount - 1;
}
imager.image=[arimage objectAtIndex:j];
}
どのような変更を加える必要がありますか?