On 11.07.2012, at 18:01, Joseph Dixon wrote: > How can I get a notification when an UITableViewCell is about to be queued > for reuse (e.g. leaves the screen)? I need to perform some work before the > cell is placed back in the reuse queue.
I don't think there is a notification. But you may possibly override UITableViewCell's method -prepareForReuse which is invoked just before the cell is returned from the table view method dequeueReusableCellWithIdentifier. _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
