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

发布于 2024-11-16 20:29:44 字数 175 浏览 1 评论 0原文

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

UIImageView *imageView2=[imageView viewWithTag:i];

In my app i have a condition in which I have to initialize a image view in my class with the same tag as other image view. So can anyone tell me how to create an image view with tag of other image view? I wrote the code like this but not getting the result:

UIImageView *imageView2=[imageView viewWithTag:i];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往事风中埋 2024-11-23 20:29:44
UIImageView *imageView1 = [view viewWithTag:i];

使用第一个图像视图的标签创建第二个图像视图。

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

Create your second image view with the tag of your first image view .

UIImageView * imageView2= [[UIImageView alloc] initWithFrame:CGRectMake(0,20,width,height)];
imageView2.tag = imageView1.tag;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文