Xcodeを初めて使用し、配列から一連の画像を取得して画面に表示しようとしていますが、デバッガーを介して、forループが実行されていないことがわかります。
for (int i = 0; i <[imagePaths count]; i++)
{
NSLog(@"I'm loading a card");
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 250, 350)];
NSString *imgFilepath = [[NSBundle mainBundle] pathForResource:[imagePaths objectAtIndex:i] ofType:@"jpg"];
UIImage *img = [[UIImage alloc] initWithContentsOfFile:imgFilepath];
[imgView setImage:img];
[self.view addSubview:imgView];
}
これを機能させるために欠けているものを見ている人はいますか?