decodeIntForKey:
Decodes an integer value associated with a given key.
Declaration
- (int) decodeIntForKey:(NSString *) key;Parameters
- key:
A key in the archive within the current decoding scope.
keymust not benil.
Return Value
The integer value associated with the key key. Returns 0 if key does not exist.
Discussion
If the archived value was encoded with a different size but is still an integer, the type is coerced. If the archived value is too large to fit into the default size for an integer, the method raises an NSRangeException.