我制作了一个表格,在其中使用了customcell。
在单元格中有两个按钮。
详情
可用的。
当用户单击详细信息按钮时,我希望缩略图图像出现在另一个视图的所选行(单元格)的Imageview中。
当用户单击按钮时,该用户将被推到另一个视图。
请帮我;如何将拇指图像放入其他UIViewcontroller中?
最佳答案
在要推送的另一个UIViewController中,将UIImageView添加到视图的XIB文件中,并将其链接到如下所示的内容:
@property (nonatomic, retain) IBOutlet UIImageView *thumbImageView;
然后,当您推送视图时,请在推送新的视图控制器之后设置UIImageView。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
AnotherViewController *anotherViewController = [[AnotherViewController alloc] init];
[self.navigationController pushViewController:anotherViewController animated:YES];
anotherViewController.thumbImageView = [tableView cellForRowAtIndexPath:indexPath].imageView;
[anotherViewController release];
}