Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 480 Bytes

File metadata and controls

18 lines (11 loc) · 480 Bytes

IRObjectQueue

Simple object re-queueing like UITableView.

Usage

IRObjectQueue *objectQueue = [IRObjectQueue new];
[objectQueue addObject:anObject];	//	must conform to <IRQueueableObject> and return -reuseIdentifier

//	Later
[objectQueue dequeueObjectWithIdentifier:anIdentifier];

//	When memory runs low
[objectQueue removeAllObjects];

Authors