|
FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
|
NSDictionary shortcut methods extension. More...
#import <NSDictionary.h>
Instance Methods | |
| (BOOL) | - containsKey: |
| Returns a Boolean value that indicates whether a given object is present in the keys. More... | |
| (id) | - anyKey |
| Returns one of the keys in the dictionary, or nil if the dictionary contains no objects. More... | |
| (id) | - anyObject |
| Returns one of the objects in the dictionary, or nil if the dictionary contains no objects. More... | |
NSDictionary shortcut methods extension.
| - (id) anyKey |
Returns one of the keys in the dictionary, or nil if the dictionary contains no objects.
| - (id) anyObject |
Returns one of the objects in the dictionary, or nil if the dictionary contains no objects.
| - (BOOL) containsKey: | (id) | aKey |
Returns a Boolean value that indicates whether a given object is present in the keys.
| aKey | A key to test dictionary has it. |