本文介绍了UIView 重复的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要复制一个视图,以及它的所有子视图.

I need to duplicate a view, with all it's subviews.

有人知道怎么做吗?

推荐答案

最简单(但可能不是最快)的方法是将其存档到 NSData 对象中并立即取消存档.

The easiest (but probably not the fastest) way is to archive it into an NSData object and unarchive it right away.

NSData *tempArchive = [NSKeyedArchiver archivedDataWithRootObject:myView];
UIView *myViewDuplicate = [NSKeyedUnarchiver unarchiveObjectWithData:tempArchive];

这篇关于UIView 重复的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 23:14