| Framework | Foundation/Foundation.h |
| Declared in | NSBundle.h NSByteOrder.h NSDecimal.h NSException.h NSObjCRuntime.h NSObject.h NSPathUtilities.h NSRange.h NSZone.h |
This chapter describes the functions and function-like macros defined in the Foundation Framework.
For additional information about Assertions, see Assertions and Logging.
NSAssert
NSAssert1
NSAssert2
NSAssert3
NSAssert4
NSAssert5
NSCAssert
NSCAssert1
NSCAssert2
NSCAssert3
NSCAssert4
NSCAssert5
NSCParameterAssert
NSParameterAssert
For additional information on generating strings files see Strings Files in Internationalization Programming Topics.
NSLocalizedString
NSLocalizedStringFromTable
NSLocalizedStringFromTableInBundle
NSLocalizedStringWithDefaultValue
NSConvertHostDoubleToSwapped
NSConvertHostFloatToSwapped
NSConvertSwappedDoubleToHost
NSConvertSwappedFloatToHost
NSHostByteOrder
NSSwapBigDoubleToHost
NSSwapBigFloatToHost
NSSwapBigIntToHost
NSSwapBigLongLongToHost
NSSwapBigLongToHost
NSSwapBigShortToHost
NSSwapDouble
NSSwapFloat
NSSwapHostDoubleToBig
NSSwapHostDoubleToLittle
NSSwapHostFloatToBig
NSSwapHostFloatToLittle
NSSwapHostIntToBig
NSSwapHostIntToLittle
NSSwapHostLongLongToBig
NSSwapHostLongLongToLittle
NSSwapHostLongToBig
NSSwapHostLongToLittle
NSSwapHostShortToBig
NSSwapHostShortToLittle
NSSwapInt
NSSwapLittleDoubleToHost
NSSwapLittleFloatToHost
NSSwapLittleIntToHost
NSSwapLittleLongLongToHost
NSSwapLittleLongToHost
NSSwapLittleShortToHost
NSSwapLong
NSSwapLongLong
NSSwapShort
You can also use the class NSDecimalNumber for decimal arithmetic.
NSDecimalAdd
NSDecimalCompact
NSDecimalCompare
NSDecimalCopy
NSDecimalDivide
NSDecimalIsNotANumber
NSDecimalMultiply
NSDecimalMultiplyByPowerOf10
NSDecimalNormalize
NSDecimalPower
NSDecimalRound
NSDecimalString
NSDecimalSubtract
You can find the following macros implemented in NSException.h. Exception Programming Topics for Cocoa discusses these macros and gives examples of their usage. These macros are useful for code that needs to run on versions of the system prior to Mac OS X v10.3 For later versions of the operating system, you should use the Objective-C compiler directives @try, @catch, @throw, and @finally; for information about these directives, see Exception Handling in The Objective-C Programming Language.
NSAllocateObject
NSCopyObject
NSDeallocateObject
NSDecrementExtraRefCountWasZero
NSExtraRefCount
NSIncrementExtraRefCount
NSShouldRetainWithZone
NSGetSizeAndAlignment
NSClassFromString
NSStringFromClass
NSSelectorFromString
NSStringFromSelector
NSStringFromProtocol
NSProtocolFromString
NSFullUserName
NSHomeDirectory
NSHomeDirectoryForUser
NSOpenStepRootDirectory
NSSearchPathForDirectoriesInDomains
NSTemporaryDirectory
NSUserName
NSEqualRanges
NSIntersectionRange
NSLocationInRange
NSMakeRange
NSMaxRange
NSRangeFromString
NSStringFromRange
NSUnionRange
Whether there’s an uncaught exception handler function, any uncaught exceptions cause the program to terminate, unless the exception is raised during the posting of a notification.
NSDefaultMallocZone
NSMakeCollectable
NSAllocateMemoryPages
NSCopyMemoryPages
NSDeallocateMemoryPages
NSLogPageSize
NSPageSize
NSRealMemoryAvailable
NSRoundDownToMultipleOfPageSize
NSRoundUpToMultipleOfPageSize
NSCreateZone
NSRecycleZone
NSSetZoneName
NSZoneCalloc
NSZoneFree
NSZoneFromPointer
NSZoneMalloc
NSZoneName
NSZoneRealloc
Allocates a new block of memory.
void * NSAllocateMemoryPages ( NSUInteger bytes );
Allocates the integral number of pages whose total size is closest to, but not less than, byteCount. The allocated pages are guaranteed to be filled with zeros. If the allocation fails, raises NSInvalidArgumentException.
NSZone.hCreates and returns a new instance of a given class.
id NSAllocateObject ( Class aClass, NSUInteger extraBytes, NSZone *zone );
The class of which to create an instance.
The number of extra bytes required for indexed instance variables (this value is typically 0).
The zone in which to create the new instance (pass NULL to specify the default zone).
A new instance of aClass or nil if an instance could not be created.
NSObject.hGenerates an assertion if a given condition is false.
#define NSAssert(condition, desc)
An expression that evaluates to YES or NO.
An NSString object that contains an error message describing the failure condition.
The NSAssert macro evaluates the condition and serves as a front end to the assertion handler.
Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes the method and class names (or the function name). It then raises an NSInternalInconsistencyException exception. If condition evaluates to NO, the macro invokes handleFailureInMethod:object:file:lineNumber:description: on the assertion handler for the current thread, passing desc as the description string.
This macro should be used only within Objective-C methods.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined.
NSException.hGenerates an assertion if a given condition is false.
#define NSAssert1(condition, desc, arg1)
An expression that evaluates to YES or NO.
An NSString object that contains a printf-style string containing an error message describing the failure condition and a placeholder for a single argument.
An argument to be inserted, in place, into desc.
The NSAssert1 macro evaluates the condition and serves as a front end to the assertion handler.
Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes the method and class names (or the function name). It then raises an NSInternalInconsistencyException exception. If condition evaluates to NO, the macro invokes handleFailureInMethod:object:file:lineNumber:description: on the assertion handler for the current thread, passing desc as the description string and arg1 as a substitution variable.
This macro should be used only within Objective-C methods.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined.
NSLogNSLogvNSAssertNSAssert2NSAssert3NSAssert4NSAssert5NSCAssertNSCParameterAssertNSParameterAssertNSException.hGenerates an assertion if a given condition is false.
#define NSAssert2(condition, desc, arg1, arg2)
An expression that evaluates to YES or NO.
An NSString object that contains a printf-style string containing an error message describing the failure condition and placeholders for two arguments.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
The NSAssert2 macro evaluates the condition and serves as a front end to the assertion handler.
Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes the method and class names (or the function name). It then raises an NSInternalInconsistencyException exception. If condition evaluates to NO, the macro invokes handleFailureInMethod:object:file:lineNumber:description: on the assertion handler for the current thread, passing desc as the description string and arg1 and arg2 as substitution variables.
This macro should be used only within Objective-C methods.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined.
NSLogNSLogvNSAssertNSAssert1NSAssert3NSAssert4NSAssert5NSCAssertNSCParameterAssertNSParameterAssertNSException.hGenerates an assertion if a given condition is false.
#define NSAssert3(condition, desc, arg1, arg2, arg3)
An expression that evaluates to YES or NO.
An NSString object that contains a printf-style string containing an error message describing the failure condition and placeholders for three arguments.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
The NSAssert3 macro evaluates the condition and serves as a front end to the assertion handler.
Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes the method and class names (or the function name). It then raises an NSInternalInconsistencyException exception. If condition evaluates to NO, the macro invokes handleFailureInMethod:object:file:lineNumber:description: on the assertion handler for the current thread, passing desc as the description string and arg1, arg2, and arg3 as substitution variables.
This macro should be used only within Objective-C methods.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined.
NSLogNSLogvNSAssertNSAssert1NSAssert2NSAssert4NSAssert5NSCAssertNSCParameterAssertNSParameterAssertNSException.hGenerates an assertion if a given condition is false.
#define NSAssert4(condition, desc, arg1, arg2, arg3, arg4)
An expression that evaluates to YES or NO.
An NSString object that contains a printf-style string containing an error message describing the failure condition and placeholders for four arguments.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
The NSAssert4 macro evaluates the condition and serves as a front end to the assertion handler.
Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes the method and class names (or the function name). It then raises an NSInternalInconsistencyException exception. If condition evaluates to NO, the macro invokes handleFailureInMethod:object:file:lineNumber:description: on the assertion handler for the current thread, passing desc as the description string and arg1, arg2, arg3, and arg4 as substitution variables.
This macro should be used only within Objective-C methods.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined.
NSLogNSLogvNSAssertNSAssert1NSAssert2NSAssert3NSAssert5NSCAssertNSCParameterAssertNSParameterAssertNSException.hGenerates an assertion if a given condition is false.
#define NSAssert5(condition, desc, arg1, arg2, arg3, arg4, arg5)
An expression that evaluates to YES or NO.
An NSString object that contains a printf-style string containing an error message describing the failure condition and placeholders for five arguments.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
An argument to be inserted, in place, into desc.
The NSAssert5 macro evaluates the condition and serves as a front end to the assertion handler.
Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes the method and class names (or the function name). It then raises an NSInternalInconsistencyException exception. If condition evaluates to NO, the macro invokes handleFailureInMethod:object:file:lineNumber:description: on the assertion handler for the current thread, passing desc as the description string and arg1, arg2, arg3, arg4, and arg5 as substitution variables.
This macro should be used only within Objective-C methods.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined.
NSLogNSLogvNSAssertNSAssert1NSAssert2NSAssert3NSAssert4NSCAssertNSCParameterAssertNSParameterAssertNSException.hGenerates an assertion if the given condition is false.
NSCAssert(condition, NSString *description)
Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises an NSInternalInconsistencyException exception.
The NSCAssert macro evaluates the condition and serves as a front end to the assertion handler. This macro should be used only within C functions. NSCAssert takes no arguments other than the condition and format string.
The condition must be an expression that evaluates to true or false. description is a printf-style format string that describes the failure condition.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All macros return void.
NSException.hNSCAssert1 is one of a series of macros that generate assertions if the given condition is false.
NSCAssert1(condition, NSString *description, arg1)
Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises an NSInternalInconsistencyException exception.
The NSCAssert1 macro evaluates the condition and serves as a front end to the assertion handler. This macro should be used only within C functions.
The condition expression must evaluate to true or false. description is a printf-style format string that describes the failure condition. arg1 is an argument to be inserted, in place, into the description.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All macros return void.
NSLogNSLogvNSCAssertNSCAssert2NSCAssert3NSCAssert4NSCAssert5NSCParameterAssertNSParameterAssertNSException.hNSCAssert2 is one of a series of macros that generate assertions if the given condition is false.
NSCAssert2(condition, NSString *description, arg1, arg2)
Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises an NSInternalInconsistencyException exception.
The NSCAssert2 macro evaluates the condition and serves as a front end to the assertion handler. This macro should be used only within C functions.
The condition expression must evaluate to true or false. description is a printf-style format string that describes the failure condition. Each argn is an argument to be inserted, in place, into the description.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All macros return void.
NSLogNSLogvNSCAssertNSCAssert1NSCAssert3NSCAssert4NSCAssert5NSCParameterAssertNSParameterAssertNSException.hNSCAssert3 is one of a series of macros that generate assertions if the given condition is false.
NSCAssert3(condition, NSString *description, arg1, arg2, arg3)
Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises an NSInternalInconsistencyException exception.
The NSCAssert3 macro evaluates the condition and serves as a front end to the assertion handler. This macro should be used only within C functions.
The condition expression must evaluate to true or false. description is a printf-style format string that describes the failure condition. Each argn is an argument to be inserted, in place, into the description.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All macros return void.
NSLogNSLogvNSCAssertNSCAssert1NSCAssert2NSCAssert4NSCAssert5NSCParameterAssertNSParameterAssertNSException.hNSCAssert4 is one of a series of macros that generate assertions if the given condition is false.
NSCAssert4(condition, NSString *description, arg1, arg2, arg3, arg4)
Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises an NSInternalInconsistencyException exception.
The NSCAssert4 macro evaluates the condition and serves as a front end to the assertion handler. This macro should be used only within C functions.
The condition expression must evaluate to true or false. description is a printf-style format string that describes the failure condition. Each argn is an argument to be inserted, in place, into the description.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All macros return void.
NSLogNSLogvNSCAssertNSCAssert1NSCAssert2NSCAssert3NSCAssert5NSCParameterAssertNSParameterAssertNSException.hNSCAssert5 is one of a series of macros that generate assertions if the given condition is false.
NSCAssert5(condition, NSString *description, arg1, arg2, arg3, arg4, arg5)
Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises an NSInternalInconsistencyException exception.
The NSCAssert5 macro evaluates the condition and serves as a front end to the assertion handler. This macro should be used only within C functions.
The condition expression must evaluate to true or false. description is a printf-style format string that describes the failure condition. Each argn is an argument to be inserted, in place, into the description.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All macros return void.
NSLogNSLogvNSCAssertNSCAssert1NSCAssert2NSCAssert3NSCAssert4NSCParameterAssertNSParameterAssertNSException.hObtains a class by name.
Class NSClassFromString ( NSString *aClassName );
The name of a class.
The class object named by aClassName, or nil if no class by that name is currently loaded. If aClassName is nil, returns nil.
NSObjCRuntime.hPerforms a type conversion.
NSSwappedDouble NSConvertHostDoubleToSwapped ( double x );
Converts the double value in x to a value whose bytes can be swapped. This function does not actually swap the bytes of x. You should not need to call this function directly.
NSByteOrder.hPerforms a type conversion.
NSSwappedFloat NSConvertHostFloatToSwapped ( float x );
Converts the float value in x to a value whose bytes can be swapped. This function does not actually swap the bytes of x. You should not need to call this function directly.
NSByteOrder.hPerforms a type conversion.
double NSConvertSwappedDoubleToHost ( NSSwappedDouble x );
Converts the value in x to a double value. This function does not actually swap the bytes of x. You should not need to call this function directly.
NSByteOrder.hPerforms a type conversion.
float NSConvertSwappedFloatToHost ( NSSwappedFloat x );
Converts the value in x to a float value. This function does not actually swap the bytes of x. You should not need to call this function directly.
NSByteOrder.hCopies a block of memory.
void NSCopyMemoryPages ( const void *source, void *dest, NSUInteger bytes );
Copies (or copies on write) byteCount bytes from source to destination.
NSZone.hCreates an exact copy of an object.
id NSCopyObject ( id object, NSUInteger extraBytes, NSZone *zone );
The object to copy.
The number of extra bytes required for indexed instance variables (this value is typically 0).
The zone in which to create the new instance (pass NULL to specify the default zone).
A new object that’s an exact copy of anObject, or nil if object is nil or if object could not be copied.
This function is dangerous and very difficult to use correctly. It's use as part of copyWithZone: by any class that can be subclassed, is highly error prone. Under GC or when using Objective-C 2.0, the zone is completely ignored.
This function is likely to be deprecated after Mac OS X 10.6.
NSObject.hEvaluates the specified parameter.
NSCParameterAssert(condition)
Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises an NSInternalInconsistencyException exception.
This macro validates a parameter for a C function. Simply provide the parameter as the condition argument. The macro evaluates the parameter and, if the parameter evaluates to false, logs an error message that includes the parameter and then raises an exception.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All macros return void.
NSException.hCreates a new zone.
NSZone * NSCreateZone ( NSUInteger startSize, NSUInteger granularity, BOOL canFree );
A pointer to a new zone of startSize bytes, which will grow and shrink by granularity bytes. If canFree is 0, the allocator will never free memory, and malloc will be fast. Returns NULL if a new zone could not be created.
NSZone.hDeallocates the specified block of memory.
void NSDeallocateMemoryPages ( void *ptr, NSUInteger bytes );
This function deallocates memory that was allocated with NSAllocateMemoryPages.
NSZone.hDestroys an existing object.
void NSDeallocateObject ( id object );
An object.
This function deallocates object, which must have been allocated using NSAllocateObject.
NSObject.hAdds two decimal values.
NSCalculationError NSDecimalAdd ( NSDecimal *result, const NSDecimal *leftOperand, const NSDecimal *rightOperand, NSRoundingMode roundingMode );
Adds leftOperand to rightOperand and stores the sum in result.
An NSDecimal can represent a number with up to 38 significant digits. If a number is more precise than that, it must be rounded off. roundingMode determines how to round it off. There are four possible rounding modes:
NSRoundDown | Round return values down. |
NSRoundUp | Round return values up. |
NSRoundPlain | Round to the closest possible return value; when caught halfway between two positive numbers, round up; when caught between two negative numbers, round down. |
NSRoundBankers | Round to the closest possible return value; when halfway between two possibilities, return the possibility whose last digit is even. |
The return value indicates whether any machine limitations were encountered in the addition. If none were encountered, the function returns NSCalculationNoError. Otherwise it may return one of the following values: NSCalculationLossOfPrecision, NSCalculationOverflow or NSCalculationUnderflow. For descriptions of all these error conditions, see exceptionDuringOperation:error:leftOperand:rightOperand: in NSDecimalNumberBehaviors.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hCompacts the decimal structure for efficiency.
void NSDecimalCompact ( NSDecimal *number );
Formats number so that calculations using it will take up as little memory as possible. All the NSDecimal... arithmetic functions expect compact NSDecimal arguments.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hCompares two decimal values.
NSComparisonResult NSDecimalCompare ( const NSDecimal *leftOperand, const NSDecimal *rightOperand );
NSOrderedDescending if leftOperand is bigger than rightOperand; NSOrderedAscending if rightOperand is bigger than leftOperand; or NSOrderedSame if the two operands are equal.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hCopies the value of a decimal number.
void NSDecimalCopy ( NSDecimal *destination, const NSDecimal *source );
Copies the value in source to destination.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hDivides one decimal value by another.
NSCalculationError NSDecimalDivide ( NSDecimal *result, const NSDecimal *leftOperand, const NSDecimal *rightOperand, NSRoundingMode roundingMode );
Divides leftOperand by rightOperand and stores the quotient, possibly rounded off according to roundingMode, in result. If rightOperand is 0, returns NSDivideByZero.
For explanations of the possible return values and rounding modes, see NSDecimalAdd.
Note that repeating decimals or numbers with a mantissa larger than 38 digits cannot be represented precisely.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hReturns a Boolean that indicates whether a given decimal contains a valid number.
BOOL NSDecimalIsNotANumber ( const NSDecimal *dcm );
YES if the value in decimal represents a valid number, otherwise NO.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hMultiplies two decimal numbers together.
NSCalculationError NSDecimalMultiply ( NSDecimal *result, const NSDecimal *leftOperand, const NSDecimal *rightOperand, NSRoundingMode roundingMode );
Multiplies rightOperand by leftOperand and stores the product, possibly rounded off according to roundingMode, in result.
For explanations of the possible return values and rounding modes, see NSDecimalAdd.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hMultiplies a decimal by the specified power of 10.
NSCalculationError NSDecimalMultiplyByPowerOf10 ( NSDecimal *result, const NSDecimal *number, short power, NSRoundingMode roundingMode );
Multiplies number by power of 10 and stores the product, possibly rounded off according to roundingMode, in result.
For explanations of the possible return values and rounding modes, see NSDecimalAdd.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hNormalizes the internal format of two decimal numbers to simplify later operations.
NSCalculationError NSDecimalNormalize ( NSDecimal *number1, NSDecimal *number2, NSRoundingMode roundingMode );
An NSDecimal is represented in memory as a mantissa and an exponent, expressing the value mantissa x 10exponent. A number can have many NSDecimal representations; for example, the following table lists several valid NSDecimal representations for the number 100:
Mantissa |
Exponent |
|---|---|
100 |
0 |
10 |
1 |
1 |
2 |
Format number1 and number2 so that they have equal exponents. This format makes addition and subtraction very convenient. Both NSDecimalAdd and NSDecimalSubtract call NSDecimalNormalize. You may want to use it if you write more complicated addition or subtraction routines.
For explanations of the possible return values, see NSDecimalAdd.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hRaises the decimal value to the specified power.
NSCalculationError NSDecimalPower ( NSDecimal *result, const NSDecimal *number, NSUInteger power, NSRoundingMode roundingMode );
Raises number to power, possibly rounding off according to roundingMode, and stores the resulting value in result.
For explanations of the possible return values and rounding modes, see NSDecimalAdd.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hRounds off the decimal value.
void NSDecimalRound ( NSDecimal *result, const NSDecimal *number, NSInteger scale, NSRoundingMode roundingMode );
Rounds number off according to the parameters scale and roundingMode and stores the result in result.
The scale value specifies the number of digits result can have after its decimal point. roundingMode specifies the way that number is rounded off. There are four possible values for roundingMode: NSRoundDown, NSRoundUp, NSRoundPlain, and NSRoundBankers. For thorough discussions of scale and roundingMode, see NSDecimalNumberBehaviors.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hReturns a string representation of the decimal value.
NSString * NSDecimalString ( const NSDecimal *dcm, id locale );
Returns a string representation of decimal. locale determines the format of the decimal separator.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hSubtracts one decimal value from another.
NSCalculationError NSDecimalSubtract ( NSDecimal *result, const NSDecimal *leftOperand, const NSDecimal *rightOperand, NSRoundingMode roundingMode );
Subtracts rightOperand from leftOperand and stores the difference, possibly rounded off according to roundingMode, in result.
For explanations of the possible return values and rounding modes, see NSDecimalAdd.
For more information, see Number and Value Programming Topics for Cocoa.
NSDecimal.hDecrements the specified object’s reference count.
BOOL NSDecrementExtraRefCountWasZero ( id object );
An object.
NO if anObject had an extra reference count, or YES if anObject didn’t have an extra reference count—indicating that the object should be deallocated (with dealloc).
Decrements the “extra reference” count of anObject. Newly created objects have only one actual reference, so that a single release message results in the object being deallocated. Extra references are those beyond the single original reference and are usually created by sending the object a retain message. Your code should generally not use these functions unless it is overriding the retain or release methods.
NSObject.hReturns the default zone.
NSZone * NSDefaultMallocZone (void);
The default zone, which is created automatically at startup.
This zone is used by the standard C function malloc.
NSZone.hReturns a Boolean value that indicates whether two given ranges are equal.
BOOL NSEqualRanges ( NSRange range1, NSRange range2 );
YES if range1 and range2 have the same locations and lengths.
NSRange.hReturns the specified object’s reference count.
NSUInteger NSExtraRefCount ( id object );
An object.
The current reference count of object.
This function is used in conjunction with NSIncrementExtraRefCount and NSDecrementExtraRefCountWasZero in situations where you need to override an object’s retain and release methods.
NSObject.hReturns a string containing the full name of the current user.
NSString * NSFullUserName (void);
A string containing the full name of the current user.
NSPathUtilities.hObtains the actual size and the aligned size of an encoded type.
const char * NSGetSizeAndAlignment ( const char *typePtr, NSUInteger *sizep, NSUInteger *alignp );
Obtains the actual size and the aligned size of the first data type represented by typePtr and returns a pointer to the position of the next data type in typePtr. You can specify NULL for either sizep or alignp to ignore the corresponding information.
The value returned in alignp is the aligned size of the data type; for example, on some platforms, the aligned size of a char might be 2 bytes while the actual physical size is 1 byte.
NSObjCRuntime.hReturns the top-level error handler.
NSUncaughtExceptionHandler * NSGetUncaughtExceptionHandler (void);
A pointer to the top-level error-handling function where you can perform last-minute logging before the program terminates.
NSException.hReturns the path to the current user’s home directory.
NSString * NSHomeDirectory (void);
The path to the current user’s home directory.
For more information on file-system utilities, see Low-Level File Management Programming Topics.
NSPathUtilities.hReturns the path to a given user’s home directory.
NSString * NSHomeDirectoryForUser ( NSString *userName );
The name of a user.
The path to the home directory for the user specified by userName.
For more information on file system utilities, see Low-Level File Management Programming Topics.
NSPathUtilities.hReturns the endian format.
long NSHostByteOrder (void);
The endian format, either NS_LittleEndian or NS_BigEndian.
NSByteOrder.hIncrements the specified object’s reference count.
void NSIncrementExtraRefCount ( id object );
An object.
This function increments the “extra reference” count of object. Newly created objects have only one actual reference, so that a single release message results in the object being deallocated. Extra references are those beyond the single original reference and are usually created by sending the object a retain message. Your code should generally not use these functions unless it is overriding the retain or release methods.
NSObject.hReturns the intersection of the specified ranges.
NSRange NSIntersectionRange ( NSRange range1, NSRange range2 );
A range describing the intersection of range1 and range2—that is, a range containing the indices that exist in both ranges.
If the returned range’s length field is 0, then the two ranges don’t intersect, and the value of the location field is undefined.
NSRange.hReturns a localized version of a string.
NSString *NSLocalizedString(NSString *key, NSString *comment)
The result of invoking localizedStringForKey:value:table: on the main bundle and a nil table.
You can specify Unicode characters in key using \\Uxxxx—see the -u option for for the genstrings utility.
For more information, see NSBundle.
In Mac OS X v10.4 and earlier, to ensure correct parsing by the genstrings utility, the key parameter must not contain any high-ASCII characters.
NSBundle.hReturns a localized version of a string.
NSString *NSLocalizedStringFromTable(NSString *key, NSString *tableName, NSString *comment)
The result of invoking localizedStringForKey:value:table: on the main bundle, passing it the specified key and tableName.
You can specify Unicode characters in key using \\Uxxxx—see the -u option for for the genstrings utility.
For more information, see NSBundle.
In Mac OS X v10.4 and earlier, to ensure correct parsing by the genstrings utility, the key parameter must not contain any high-ASCII characters.
NSBundle.hReturns a localized version of a string.
NSString *NSLocalizedStringFromTableInBundle(NSString *key, NSString *tableName, NSBundle *bundle, NSString *comment)
The result of invoking localizedStringForKey:value:table: on bundle, passing it the specified key and tableName.
You can specify Unicode characters in key using \\Uxxxx—see the -u option for for the genstrings utility.
For more information, see NSBundle.
In Mac OS X v10.4 and earlier, to ensure correct parsing by the genstrings utility, the key parameter must not contain any high-ASCII characters.
NSBundle.hReturns a localized version of a string.
NSString *NSLocalizedStringWithDefaultValue(NSString *key, NSString *tableName, NSBundle *bundle, NSString *value, NSString *comment)
The result of invoking localizedStringForKey:value:table: on bundle, passing it the specified key, value, and tableName.
You can specify Unicode characters in key using \\Uxxxx—see the -u option for for the genstrings utility.
If you use genstrings to parse your code for localizable strings, you can use this method to specify an initial value that is different from key.
For more information, see NSBundle.
In Mac OS X v10.4 and earlier, to ensure correct parsing by the genstrings utility, the key parameter must not contain any high-ASCII characters.
NSBundle.hReturns a Boolean value that indicates whether a specified position is in a given range.
BOOL NSLocationInRange ( NSUInteger loc, NSRange range );
YES if loc lies within range—that is, if it’s greater than or equal to range.location and less than range.location plus range.length.
NSRange.hLogs an error message to the Apple System Log facility.
void NSLog ( NSString *format, ... );
Simply calls NSLogv, passing it a variable number of arguments.
NSObjCRuntime.hReturns the binary log of the page size.
NSUInteger NSLogPageSize (void);
The binary log of the page size.
NSZone.hLogs an error message to the Apple System Log facility.
void NSLogv ( NSString *format, va_list args );
Logs an error message to the Apple System Log facility (see man 3 asl). If the STDERR_FILENO file descriptor has been redirected away from the default or is going to a tty, it will also be written there. If you want to direct output elsewhere, you need to use a custom logging facility.
The message consists of a timestamp and the process ID prefixed to the string you pass in. You compose this string with a format string, format, and one or more arguments to be inserted into the string. The format specification allowed by these functions is that which is understood by NSString’s formatting capabilities (which is not necessarily the set of format escapes and flags understood by printf). The supported format specifiers are described in String Format Specifiers. A final hard return is added to the error message if one is not present in the format.
In general, you should use the NSLog function instead of calling this function directly. If you do use this function directly, you must have prepared the variable argument list in the args argument by calling the standard C macro va_start. Upon completion, you must similarly call the standard C macro va_end for this list.
Output from NSLogv is serialized, in that only one thread in a process can be doing the writing/logging described above at a time. All attempts at writing/logging a message complete before the next thread can begin its attempts.
The effects of NSLogv are not serialized with subsystems other than those discussed above (such as the standard I/O package) and do not produce side effects on those subsystems (such as causing buffered output to be flushed, which may be undesirable).
NSObjCRuntime.hMakes a newly allocated Core Foundation object eligible for collection.
NS_INLINE id NSMakeCollectable(CFTypeRef cf) { return cf ? (id)CFMakeCollectable(cf) : nil; }
This function is a wrapper for CFMakeCollectable, but its return type is id—avoiding the need for casting when using Cocoa objects.
This function may be useful when returning Core Foundation objects in code that must support both garbage-collected and non-garbage-collected environments, as illustrated in the following example.
- (CFDateRef)foo { |
CFDateRef aCFDate; |
// ... |
return [NSMakeCollectable(aCFDate) autorelease]; |
} |
CFTypeRef style objects are garbage collected, yet only sometime after the last CFRelease is performed. Particularly for fully-bridged CFTypeRef objects such as CFStrings and collections (such as CFDictionary), you must call either CFMakeCollectable or the more type safe NSMakeCollectable, preferably right upon allocation.
NSZone.hCreates a new NSRange from the specified values.
NSRange NSMakeRange ( NSUInteger loc, NSUInteger len );
An NSRange with location location and length length.
NSRange.hReturns the sum of the location and length of the range.
NSUInteger NSMaxRange ( NSRange range );
The sum of the location and length of the range—that is, range.location + range.length.
NSRange.hReturns the root directory of the user’s system.
NSString * NSOpenStepRootDirectory (void);
A string identifying the root directory of the user’s system.
For more information on file system utilities, see Low-Level File Management Programming Topics.
NSPathUtilities.hReturns the number of bytes in a page.
NSUInteger NSPageSize (void);
The number of bytes in a page.
NSZone.hValidates the specified parameter.
NSParameterAssert(condition)
Assertions evaluate a condition and, if the condition evaluates to false, call the assertion handler for the current thread, passing it a format string and a variable number of arguments. Each thread has its own assertion handler, which is an object of class NSAssertionHandler. When invoked, an assertion handler prints an error message that includes method and class names (or the function name). It then raises an NSInternalInconsistencyException exception.
This macro validates a parameter for an Objective-C method. Simply provide the parameter as the condition argument. The macro evaluates the parameter and, if it is false, it logs an error message that includes the parameter and then raises an exception.
Assertions are disabled if the preprocessor macro NS_BLOCK_ASSERTIONS is defined. All assertion macros return void.
NSException.hReturns a the protocol with a given name.
Protocol *NSProtocolFromString ( NSString *namestr );
The name of a protocol.
The protocol object named by namestr, or nil if no protocol by that name is currently loaded. If namestr is nil, returns nil.
NSObjCRuntime.hReturns a range from a textual representation.
NSRange NSRangeFromString ( NSString *aString );
Scans aString for two integers which are used as the location and length values, in that order, to create an NSRange struct. If aString only contains a single integer, it is used as the location value. If aString does not contain any integers, this function returns an NSRange struct whose location and length values are both 0.
NSRange.hReturns information about the user’s system.
NSUInteger NSRealMemoryAvailable (void);
The number of bytes available in RAM.
NSZone.hFrees memory in a zone.
void NSRecycleZone ( NSZone *zone );
Frees zone after adding any of its pointers still in use to the default zone. (This strategy prevents retained objects from being inadvertently destroyed.)
NSZone.hReturns the specified number of bytes rounded down to a multiple of the page size.
NSUInteger NSRoundDownToMultipleOfPageSize ( NSUInteger bytes );
In bytes, the multiple of the page size that is closest to, but not greater than, byteCount (that is, the number of bytes rounded down to a multiple of the page size).
NSZone.hReturns the specified number of bytes rounded up to a multiple of the page size.
NSUInteger NSRoundUpToMultipleOfPageSize ( NSUInteger bytes );
In bytes, the multiple of the page size that is closest to, but not less than, byteCount (that is, the number of bytes rounded up to a multiple of the page size).
NSZone.hCreates a list of directory search paths.
NSArray * NSSearchPathForDirectoriesInDomains ( NSSearchPathDirectory directory, NSSearchPathDomainMask domainMask, BOOL expandTilde );
Creates a list of path strings for the specified directories in the specified domains. The list is in the order in which you should search the directories. If expandTilde is YES, tildes are expanded as described in stringByExpandingTildeInPath.
For more information on file system utilities, see Locating Directories on the System.
NSPathUtilities.hReturns the selector with a given name.
SEL NSSelectorFromString ( NSString *aSelectorName );
A string of any length, with any characters, that represents the name of a selector.
The selector named by aSelectorName. If aSelectorName is nil, or cannot be converted to UTF-8 (this should be only due to insufficient memory), returns (SEL)0.
To make a selector, NSSelectorFromString passes a UTF-8 encoded character representation of aSelectorName to sel_registerName and returns the value returned by that function. Note, therefore, that if the selector does not exist it is registered and the newly-registered selector is returned.
Recall that a colon (“:”) is part of a method name; setHeight is not the same as setHeight:. For more about methods names, see Objects, Classes, and Messaging in The Objective-C Programming Language.
NSObjCRuntime.hChanges the top-level error handler.
void NSSetUncaughtExceptionHandler ( NSUncaughtExceptionHandler * );
Sets the top-level error-handling function where you can perform last-minute logging before the program terminates.
NSException.hSets the name of the specified zone.
void NSSetZoneName ( NSZone *zone, NSString *name );
Sets the name of zone to name, which can aid in debugging.
NSZone.hIndicates whether an object should be retained.
BOOL NSShouldRetainWithZone ( id anObject, NSZone *requestedZone );
An object.
A memory zone.
Returns YES if requestedZone is NULL, the default zone, or the zone in which anObject was allocated; otherwise NO.
This function is typically called from inside an NSObject’s copyWithZone:, when deciding whether to retain anObject as opposed to making a copy of it.
NSObject.hReturns the name of a class as a string.
NSString * NSStringFromClass ( Class aClass );
A class.
A string containing the name of aClass. If aClass is nil, returns nil.
NSObjCRuntime.hReturns the name of a protocol as a string.
NSString * NSStringFromProtocol ( Protocol *proto );
A protocol.
A string containing the name of proto.
NSObjCRuntime.hReturns a string representation of a range.
NSString * NSStringFromRange ( NSRange range );
A string of the form “{a, b}”, where a and b are non-negative integers representing aRange.
NSRange.hReturns a string representation of a given selector.
NSString *NSStringFromSelector ( SEL aSelector );
A selector.
A string representation of aSelector.
NSObjCRuntime.hA utility for swapping the bytes of a number.
double NSSwapBigDoubleToHost ( NSSwappedDouble x );
Converts the big-endian value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapDouble to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
float NSSwapBigFloatToHost ( NSSwappedFloat x );
Converts the big-endian value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapFloat to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned int NSSwapBigIntToHost ( unsigned int x );
Converts the big-endian value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapInt to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long long NSSwapBigLongLongToHost ( unsigned long long x );
Converts the big-endian value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapLongLong to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long NSSwapBigLongToHost ( unsigned long x );
Converts the big-endian value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapLong to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned short NSSwapBigShortToHost ( unsigned short x );
Converts the big-endian value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapShort to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
NSSwappedDouble NSSwapDouble ( NSSwappedDouble x );
Swaps the bytes of x and returns the resulting value. Bytes are swapped from each low-order position to the corresponding high-order position and vice versa. For example, if the bytes of x are numbered from 1 to 8, this function swaps bytes 1 and 8, bytes 2 and 7, bytes 3 and 6, and bytes 4 and 5.
NSByteOrder.hA utility for swapping the bytes of a number.
NSSwappedFloat NSSwapFloat ( NSSwappedFloat x );
Swaps the bytes of x and returns the resulting value. Bytes are swapped from each low-order position to the corresponding high-order position and vice versa. For example, if the bytes of x are numbered from 1 to 4, this function swaps bytes 1 and 4, and bytes 2 and 3.
NSByteOrder.hA utility for swapping the bytes of a number.
NSSwappedDouble NSSwapHostDoubleToBig ( double x );
Converts the value in x, specified in the current endian format, to big-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapDouble to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
NSSwappedDouble NSSwapHostDoubleToLittle ( double x );
Converts the value in x, specified in the current endian format, to little-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapDouble to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
NSSwappedFloat NSSwapHostFloatToBig ( float x );
Converts the value in x, specified in the current endian format, to big-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapFloat to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
NSSwappedFloat NSSwapHostFloatToLittle ( float x );
Converts the value in x, specified in the current endian format, to little-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapFloat to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned int NSSwapHostIntToBig ( unsigned int x );
Converts the value in x, specified in the current endian format, to big-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapInt to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned int NSSwapHostIntToLittle ( unsigned int x );
Converts the value in x, specified in the current endian format, to little-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapInt to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long long NSSwapHostLongLongToBig ( unsigned long long x );
Converts the value in x, specified in the current endian format, to big-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapLongLong to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long long NSSwapHostLongLongToLittle ( unsigned long long x );
Converts the value in x, specified in the current endian format, to little-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapLongLong to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long NSSwapHostLongToBig ( unsigned long x );
Converts the value in x, specified in the current endian format, to big-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapLong to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long NSSwapHostLongToLittle ( unsigned long x );
Converts the value in x, specified in the current endian format, to little-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapLong to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned short NSSwapHostShortToBig ( unsigned short x );
Converts the value in x, specified in the current endian format, to big-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapShort to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned short NSSwapHostShortToLittle ( unsigned short x );
Converts the value in x, specified in the current endian format, to little-endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapShort to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned int NSSwapInt ( unsigned int inv );
Swaps the bytes of inv and returns the resulting value. Bytes are swapped from each low-order position to the corresponding high-order position and vice versa. For example, if the bytes of inv are numbered from 1 to 4, this function swaps bytes 1 and 4, and bytes 2 and 3.
NSByteOrder.hA utility for swapping the bytes of a number.
double NSSwapLittleDoubleToHost ( NSSwappedDouble x );
Converts the little-endian formatted value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapDouble to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
float NSSwapLittleFloatToHost ( NSSwappedFloat x );
Converts the little-endian formatted value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapFloat to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned int NSSwapLittleIntToHost ( unsigned int x );
Converts the little-endian formatted value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapInt to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long long NSSwapLittleLongLongToHost ( unsigned long long x );
Converts the little-endian formatted value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes, this function calls NSSwapLongLong to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long NSSwapLittleLongToHost ( unsigned long x );
Converts the little-endian formatted value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapLong to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned short NSSwapLittleShortToHost ( unsigned short x );
Converts the little-endian formatted value in x to the current endian format and returns the resulting value. If it is necessary to swap the bytes of x, this function calls NSSwapShort to perform the swap.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long NSSwapLong ( unsigned long inv );
Swaps the bytes of inv and returns the resulting value. Bytes are swapped from each low-order position to the corresponding high-order position and vice versa. For example, if the bytes of inv are numbered from 1 to 4, this function swaps bytes 1 and 4, and bytes 2 and 3.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned long long NSSwapLongLong ( unsigned long long inv );
Swaps the bytes of inv and returns the resulting value. Bytes are swapped from each low-order position to the corresponding high-order position and vice versa. For example, if the bytes of inv are numbered from 1 to 8, this function swaps bytes 1 and 8, bytes 2 and 7, bytes 3 and 6, and bytes 4 and 5.
NSByteOrder.hA utility for swapping the bytes of a number.
unsigned short NSSwapShort ( unsigned short inv );
Swaps the low-order and high-order bytes of inv and returns the resulting value.
NSByteOrder.hReturns the path of the temporary directory for the current user.
NSString * NSTemporaryDirectory (void);
A string containing the path of the temporary directory for the current user. If no such directory is currently available, returns nil.
For more information on file system utilities, see Low-Level File Management Programming Topics.
The temporary directory is determined by confstr(3) passing the _CS_DARWIN_USER_TEMP_DIR flag. The erase rules are whatever match that directory.
See the NSFileManager method URLForDirectory:inDomain:appropriateForURL:create:error: for an alternate (and more flexible) means of finding the correct temporary directory.
NSPathUtilities.hReturns the union of the specified ranges.
NSRange NSUnionRange ( NSRange range1, NSRange range2 );
A range covering all indices in and between range1 and range2. If one range is completely contained in the other, the returned range is equal to the larger range.
NSRange.hReturns the logon name of the current user.
NSString * NSUserName (void);
The logon name of the current user.
NSPathUtilities.hAllocates memory in a zone.
void * NSZoneCalloc ( NSZone *zone, NSUInteger numElems, NSUInteger byteSize );
Allocates enough memory from zone for numElems elements, each with a size numBytes bytes, and returns a pointer to the allocated memory. The memory is initialized with zeros. This function returns NULL if it was unable to allocate the requested memory.
NSZone.hDeallocates a block of memory in the specified zone.
void NSZoneFree ( NSZone *zone, void *ptr );
Returns memory to the zone from which it was allocated. The standard C function free does the same, but spends time finding which zone the memory belongs to.
NSZone.hGets the zone for a given block of memory.
NSZone * NSZoneFromPointer ( void *ptr );
The zone for the block of memory indicated by pointer, or NULL if the block was not allocated from a zone.
pointer must be one that was returned by a prior call to an allocation function.
NSZone.hAllocates memory in a zone.
void * NSZoneMalloc ( NSZone *zone, NSUInteger size );
Allocates size bytes in zone and returns a pointer to the allocated memory. This function returns NULL if it was unable to allocate the requested memory.
NSZone.hReturns the name of the specified zone.
NSString * NSZoneName ( NSZone *zone );
A string containing the name associated with zone. If zone is nil, the default zone is used. If no name is associated with zone, the returned string is empty.
NSZone.hAllocates memory in a zone.
void * NSZoneRealloc ( NSZone *zone, void *ptr, NSUInteger size );
Changes the size of the block of memory pointed to by ptr to size bytes. It may allocate new memory to replace the old, in which case it moves the contents of the old memory block to the new block, up to a maximum of size bytes. ptr may be NULL. This function returns NULL if it was unable to allocate the requested memory.
NSZone.hMarks the start of the exception-handling domain.
NS_DURING
The NS_DURING macro marks the start of the exception-handling domain for a section of code. (The NS_HANDLERmacro marks the end of the domain.) Within the exception-handling domain you can raise an exception, giving the local exception handler (or lower exception handlers) a chance to handle it.
NSException.hMarks the end of the local event handler.
NS_ENDHANDLER
The NS_ENDHANDLER marks the end of a section of code that is a local exception handler. (The NS_HANDLERmacros marks the beginning of this section.) If an exception is raised in the exception handling domain marked off by the NS_DURING and NS_HANDLER, the local exception handler (if specified) is given a chance to handle the exception.
NSException.hMarks the end of the exception-handling domain and the start of the local exception handler.
NS_HANDLER
The NS_HANDLER macro marks end of a section of code that is an exception-handling domain while at the same time marking the beginning of a section of code that is a local exception handler for that domain. (The NS_DURING macro marks the beginning of the exception-handling domain; the NS_ENDHANDLER marks the end of the local exception handler.) If an exception is raised in the exception-handling domain, the local exception handler is first given the chance to handle the exception before lower-level handlers are given a chance.
NSException.hPermits program control to exit from an exception-handling domain with a value of a specified type.
NS_VALUERETURN(val, type)
A value to preserve beyond the exception-handling domain.
The type of the value specified in val.
The NS_VALUERETURN macro returns program control to the caller out of the exception-handling domain—that is, a section of code between the NS_DURING and NS_HANDLER macros that might raise an exception. The specified value (of the specified type) is returned to the caller. The standard return statement does not work as expected in the exception-handling domain.
NSException.hPermits program control to exit from an exception-handling domain.
NS_VOIDRETURN
The NS_VOIDRETURN macro returns program control to the caller out of the exception-handling domain—that is, a section of code between the NS_DURING and NS_HANDLER macros that might raise an exception. The standard return statement does not work as expected in the exception-handling domain.
NSException.hLast updated: 2009-10-11