最近,我遇到了一个让我恼火的问题。 原因是我想将一个图像放在一个数组中并在collectionview单元格中显示每个图像,但它不起作用。
这是我的代码
NSMutableArray *imagearray = [[NSMutableArray alloc] init];
[imagearray addObject:[UIImage imageNamed:@"img_sort-1"]];
[imagearray addObject:[UIImage imageNamed:@"img_sort-2"]];
[imagearray addObject:[UIImage imageNamed:@"img_sort-3"]];
[imagearray addObject:[UIImage imageNamed:@"img_sort-4"]];
[imagearray addObject:[UIImage imageNamed:@"img_sort-5"]];
[imagearray addObject:[UIImage imageNamed:@"img_sort-6"]];
UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(10, 5, 30, 30)];
imageView.image = [UIImage imageNamed:imagearray];
[customView addSubview:imageView];
因为我想在本节中显示数组
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
}
有没有人有个好主意?