0

このラベル配列を 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";

ありがとう

4

1 に答える 1

0

解決した

labelArray =[[NSArray alloc] initWithObjects:@"Theme 001-002", @"Theme 002-006", @"Theme 006-009", @"Theme 009-012", nil];


cell.label.text = [labelArray objectAtIndex:indexPath.row];
于 2013-06-14T17:24:06.260 に答える