我有一个UIScrollView,我有UIImageView
和UIButton
,当我创建临时UIScrollView
并尝试做类似的事情时:
for (UIView *viewCopy in scrollView.subviews)
{
[tempScrollView addSubview:viewCopy];
}
scrollView上每个子视图的指针消失。我需要复制每个对象吗?如何制作UIImageView
和UIButton
的副本?感谢..
答案 0 :(得分:2)
UIImageView
派生的 UIView
和UIButton不符合NSCopying
协议。所以,你不能复制。
您可以实例化多个时间UIImageView
和UIButton
并拥有所需数量的对象。
在任何情况下,都不清楚你的意思是:“scrollView上每个子视图的指针消失”