我有一个表格视图,当我选择任何行时,它会显示该特定项目的详细信息。详细信息包含该项目的图片。现在我想在你点击后放大图片。请帮助,因为我是这个 iOS 领域的新手。
contentview = [[UIImageView alloc]init];
[contentview setFrame:CGRectMake(10, 10, 300, 150)];
[contentview setImage:[UIImage imageNamed:@"chicken tikka.png"]];
[self.view addSubview: contentview];
[contentview release];
UIWebView *ingradients= [[UIWebView alloc]init];
[ingradients setFrame:CGRectMake(10, 170, 300, 300)];
[ingradients loadHTMLString:@"<html><body><p style:color:red><strong>INGREDIENTS</strong></p><ul><li>One kg Chicken</li><li>Half kg Onion</li><li>200gm Tomato</li></ul></body></html>" baseURL:nil];
ingradients.delegate=self;
[self.view addSubview:ingradients];