使用其他图像视图标签创建图像视图
在我的应用程序中,我有一个条件,我必须使用与其他图像视图相同的标签来初始化我的类中的图像视图。那么谁能告诉我如何使用其他图像视图的标签创建图像视图?我写了这样的代码,但没有得到结果:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用第一个图像视图的标签创建第二个图像视图。
Create your second image view with the tag of your first image view .