Skip to content

aqibmumtaz/NSMutableArray-StackExt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

NSMutableArray-StackExt

Simple addition to NSMutableArray which gives you a Stack implementation. Use push and pop to manage your statck for any kind of Object Stack.

Example:

// Push objects
[q push:@"object1"];
[q push:@"object2"];

// Pop objects
NSLog(@"%@", [q dequeue] );
NSLog(@"%@", [q dequeue] );

About

NSMutableArray Stack Implementation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published