Archive for category Objective-C
NSMutableDictionary Example
Posted by Michael Bowersox in Cocoa, Objective-C on September 21, 2011
The NSMutableDictionary object is very useful item in the Cocoa toolbox. It allows you to store values which are indexed by key. It is similar to the NSDictionary object with the exception that items can be added and removed dynamically. So let’s jump right in and take a look at some sample code. Creating an [...]