で画像を表示したいTableView
。1 つのセルに 1 つの画像を表示できますが、フォト ライブラリのようにすべての行に 1 つの画像ではなく 4 つの画像を表示したいのですが、任意の画像を選択すると、フォト ライブラリで起こったようにスライド ショーとして開きます。
私の画像は Document Directory に保存されています。これどうやってするの?
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tablView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
//Adjust your imageview frame according to you
UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(0.0, 0.0, 470.0, 80.0)];
[imageView setImage:[arrayOfImages objectAtIndex:indexPath.row]];
[cell.contentView addSubview:imageView];
return cell;
}