Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了自定义 tableView 单元,我插入了一个零矩形的虚拟背景视图。所以问题是 rect 为零的 UIView 对象是否占用内存?是否浪费内存?
所有对象都占用内存。至少需要有空间来保存类的每个实例变量(及其所有超类)。一些类可能会根据它们的实现分配额外的内存。
在这种情况下,添加到表中几行的零矩形视图是如此微不足道,甚至没有真正的理由去考虑它。