<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="https://code-reference.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://code-reference.com/feed.php">
        <title>Programming | Library | Reference - Code-Reference.com objective-c:foundation.framework</title>
        <description></description>
        <link>https://code-reference.com/</link>
        <image rdf:resource="https://code-reference.com/ttps://code-reference.com/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-05-26T01:57:40+02:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://code-reference.com/objective-c/foundation.framework/nsarray.h?rev=1708041980&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/objective-c/foundation.framework/nsdictionary.h?rev=1402184643&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/objective-c/foundation.framework/nsfilemanager.h?rev=1708041981&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/objective-c/foundation.framework/nsmutablearray.h?rev=1708041980&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/objective-c/foundation.framework/nsnumber.h?rev=1708041980&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/objective-c/foundation.framework/nsstring.h?rev=1708041981&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/objective-c/foundation.framework/nsvalue.h?rev=1708041981&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://code-reference.com/ttps://code-reference.com/lib/tpl/dokuwiki/images/favicon.ico">
        <title>Programming | Library | Reference - Code-Reference.com</title>
        <link>https://code-reference.com/</link>
        <url>https://code-reference.com/ttps://code-reference.com/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://code-reference.com/objective-c/foundation.framework/nsarray.h?rev=1708041980&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T01:06:20+02:00</dc:date>
        <title>NSArray</title>
        <link>https://code-reference.com/objective-c/foundation.framework/nsarray.h?rev=1708041980&amp;do=diff</link>
        <description>NSArray

NSArray and its subclass NSMutableArray manage ordered collections of objects called arrays. NSArray creates static arrays, and NSMutableArray creates dynamic arrays.


init

initWithObjects</description>
    </item>
    <item rdf:about="https://code-reference.com/objective-c/foundation.framework/nsdictionary.h?rev=1402184643&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-06-08T01:44:03+02:00</dc:date>
        <title>NSDictionary</title>
        <link>https://code-reference.com/objective-c/foundation.framework/nsdictionary.h?rev=1402184643&amp;do=diff</link>
        <description>NSDictionary

The NSDictionary class declares the programmatic interface to objects that manage immutable associations of keys and values. A key-value pair within a dictionary is called an entry.

Use this class when you need a convenient and efficient way to retrieve data associated with an arbitrary key.</description>
    </item>
    <item rdf:about="https://code-reference.com/objective-c/foundation.framework/nsfilemanager.h?rev=1708041981&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T01:06:21+02:00</dc:date>
        <title>NSFileManager</title>
        <link>https://code-reference.com/objective-c/foundation.framework/nsfilemanager.h?rev=1708041981&amp;do=diff</link>
        <description>NSFileManager

NSFileManager class enables you to perform many generic file-system operations.


init

defaultManager</description>
    </item>
    <item rdf:about="https://code-reference.com/objective-c/foundation.framework/nsmutablearray.h?rev=1708041980&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T01:06:20+02:00</dc:date>
        <title>NSMutableArray</title>
        <link>https://code-reference.com/objective-c/foundation.framework/nsmutablearray.h?rev=1708041980&amp;do=diff</link>
        <description>NSMutableArray

The NSMutableArray class declares the programmatic interface to objects that manage a modifiable array of objects. This class adds insertion and deletion operations to the basic array-handling behavior inherited from NSArray.


init

addObject</description>
    </item>
    <item rdf:about="https://code-reference.com/objective-c/foundation.framework/nsnumber.h?rev=1708041980&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T01:06:20+02:00</dc:date>
        <title>NSNumber</title>
        <link>https://code-reference.com/objective-c/foundation.framework/nsnumber.h?rev=1708041980&amp;do=diff</link>
        <description>NSNumber

NSNumber is a subclass of NSValue that offers a value as any C scalar (numeric) type.

 Method                 Description                 initWith    initWithBool    initWithInt    initWithInteger    initWithDouble    initWithFloat    numberWith   boolValue    intValue    doubleValue   floatValue   charValue   descriptionWithLocale   isEqualToNumber  compares object with Number initWithUnsignedInt</description>
    </item>
    <item rdf:about="https://code-reference.com/objective-c/foundation.framework/nsstring.h?rev=1708041981&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T01:06:21+02:00</dc:date>
        <title>NSString</title>
        <link>https://code-reference.com/objective-c/foundation.framework/nsstring.h?rev=1708041981&amp;do=diff</link>
        <description>NSString

The NSString class declares the programmatic interface for an object that manages immutable strings.

NSString is implemented to represent an array of Unicode characters, in other words, a text string.


caseinsensitivecompare

isequaltostring

lowercasestring

stringbyappendingformat

stringbyappendingstring

stringwithformat

uppercasestring</description>
    </item>
    <item rdf:about="https://code-reference.com/objective-c/foundation.framework/nsvalue.h?rev=1708041981&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T01:06:21+02:00</dc:date>
        <title>NSValue</title>
        <link>https://code-reference.com/objective-c/foundation.framework/nsvalue.h?rev=1708041981&amp;do=diff</link>
        <description>NSValue

An NSValue object is a simple container for a single C or Objective-C data item.

valueWithCGPoint

valueWithCGRect

valueWithCGSize</description>
    </item>
</rdf:RDF>
