The iOS framework that grows only as fast as its documentation
<NIRecyclableView> Protocol Reference

Overview

The NIRecyclableView protocol defines a set of optional methods that a view may implement to handle being added to a NIViewRecycler.

Inheritance diagram for <NIRecyclableView>:
NILauncherButtonView <NILauncherButtonView> <NIPagingScrollViewPage> NIRecyclableView NILauncherButtonView NIPagingScrollViewPage NIPhotoScrollView NIPagingScrollViewPage NILauncherPageView NIPageView NILauncherPageView NIPageView

Tasks

NSString * reuseIdentifier property
 
(void) - prepareForReuse
 

Method Documentation

reuseIdentifier

The identifier used to categorize views into buckets for reuse.

@property (nonatomic, copy) NSString* reuseIdentifier;
Discussion

Views will be reused when a new view is requested with a matching identifier.

If the reuseIdentifier is nil then the class name will be used.

prepareForReuse

Called immediately after the view has been dequeued from the recycled view pool.

- (void)prepareForReuse;