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

Overview

The launcher delegate used to inform of state changes and user interactions.

Inheritance diagram for <NILauncherButtonView>:
<NIRecyclableView> NILauncherButtonView

Tasks

UIButton * button property
 
NSString * reuseIdentifier property
 
(void) - prepareForReuse
 

Method Documentation

button

Requires the view to contain a button subview.

@property (nonatomic, strong) UIButton* button;

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;