使用其他图像视图标记创建图像视图

时间:2011-06-23 13:07:35

标签: objective-c cocoa-touch ipad tags uiimageview

在我的应用程序中,我有一个条件,我必须使用与其他图像视图相同的标记初始化我的类中的图像视图。那么有人能告诉我如何用其他图像视图的标签创建图像视图吗?我写了这样的代码,但没有得到结果:

UIImageView *imageView2=[imageView viewWithTag:i];

1 个答案:

答案 0 :(得分:0)

UIImageView *imageView1 = [view viewWithTag:i];

使用第一张图片视图的标记创建第二张图片视图。

UIImageView * imageView2= [[UIImageView alloc] initWithFrame:CGRectMake(0,20,width,height)];
imageView2.tag = imageView1.tag;