以下のコードからグリッドビューに画像を表示するサンプルコードがあります...しかし、すべての画像に対して同じ画像を表示します...方法は以下のとおりです..
- (MMGridViewCell *)gridView:(MMGridView *)gridView cellAtIndex:(NSUInteger)index
{
MMGridViewDefaultCell *cell = [[MMGridViewDefaultCell alloc] initWithFrame:CGRectNull];
cell.textLabel.text = [NSString stringWithFormat:@"Cell %d", index];
cell.imageView.image = [UIImage imageNamed:@"cell-image.png"];
// this needs to be change load from the array
}
- (NSInteger)numberOfCellsInGridView:(MMGridView *)gridView
{
return 64;
}
今、私は画像の配列を持っており、そのメソッドに入れる必要がありますがcellAtIndex
、すべての画像を配列に変換するにはどうすればよいですか..
配列は次のようになります
-(void)viewDidLoad{
_imageDatas = [DelegateClass mag]._imageData;
_finaImages = [[NSMutableArray alloc]init];
}
_finaImages = [[NSMutableArray alloc]init];
for (int i = 0; i < [_imageDatas count]; i++) {
[_finaImages addObject:[self loadImage:i]];
}
- (UIImage *)loadImage:(int)index {
@try {
UIImage* image = [[UIImage alloc] initWithData:[_imageDatas objectAtIndex:index]] ;
return image;
}
@catch (NSException *exception) {
NSLog(@"ImageFullScreenViewController - loadImage Exception Name = %@ Exception Reason = %@",[exception name],[exception reason]);
}
以下の配列から上記の imageView.image にデータを変換するにはどうすればよいですか