检测UITableViewCell何时超出范围

LK.*_*LK. 11 iphone objective-c

如何检测何时从表中删除UITableViewCell派生对象并进入缓存?

dra*_*ard 14

实现以下任一方法.从表中删除后,superview将变为零.当添加回表格时,superview将被设置为表格视图.

- (void)willMoveToSuperview:(UIView *)newSuperview;
- (void)didMoveToSuperview;
Run Code Online (Sandbox Code Playgroud)

另见

- (void)prepareForReuse;
Run Code Online (Sandbox Code Playgroud)