このラベル配列を collectionview セルに追加したい
labelArray =[[NSArray alloc] initWithObjects:@"Theme 001-002", @"Theme 002-006", @"Theme 006-009", @"Theme 009-012", nil];
NSString *filePath = [labelArray indexPath.row];
これは、ラベル配列を collectionview セルに追加する正しい方法ですか?
cell.label.text = @"Theme 001-002";
ありがとう