mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
URL fixes and implementation of unimplemented methods
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@7584 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4ae2035ea0
commit
bb4197a1d3
90 changed files with 6448 additions and 5922 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
|||
2000-09-22 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/gnustep/base/NSData.h: Added URL methods.
|
||||
* Headers/gnustep/base/GSXML.h: Reorganized init methods in line with
|
||||
Manuels ideas but with naming consistent with other classes.
|
||||
* Source/NSData.m: Added URL methods.
|
||||
* Source/NSURL.m: First attempt (untested) at code to load data.
|
||||
tolerate URLs where the network part is missing and the '//' left out.
|
||||
* Source/GSXML.m: Reorganized init methods in line with
|
||||
Manuels ideas but with naming consistent with other classes.
|
||||
* Source/propList.h: Update for change in GSXMLParser API.
|
||||
* Documentation/gsdoc/GSXMLParser.gsdoc: update for new initialisation
|
||||
methods.
|
||||
|
||||
2000-09-21 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* configure.in: Check for rint.
|
||||
|
|
|
@ -84,7 +84,7 @@ XML SAX Handler.</p>
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">handler</a></h3>
|
||||
+ (<A HREF="GSSAXHandler.html#GSSAXHandler">GSSAXHandler</A>*) <b>handler</b>;<br>
|
||||
+ (GSSAXHandler*) <b>handler</b>;<br>
|
||||
|
||||
<p>
|
||||
Create a new SAX handler.
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<h2><a name ="cont-0">GSXMLAttribute</a></h2>
|
||||
<h2><a name ="GSXMLAttribute">GSXMLAttribute</a></h2>
|
||||
<p><b>Declared in: </b> GSXML.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A></p>
|
||||
<p><b>Inherits from: </b> GSXMLNode</p>
|
||||
<hr>
|
||||
|
||||
XML Attribute.
|
||||
|
@ -40,7 +40,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">attributeWithNode:name:value:</a></h3>
|
||||
+ (<A HREF="GSXMLAttribute.html#GSXMLAttribute">GSXMLAttribute</A>*) <b>attributeWithNode:</b> (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*)node <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>value:</b> (<A HREF="NSString.html#NSString">NSString</A>*)value;<br>
|
||||
+ (GSXMLAttribute*) <b>attributeWithNode:</b> (GSXMLNode*)node <b>name:</b> (NSString*)name <b>value:</b> (NSString*)value;<br>
|
||||
|
||||
<p>
|
||||
Create a new property carried by a node.
|
||||
|
@ -49,7 +49,7 @@ Create a new property carried by a node.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">attributeFrom:</a></h3>
|
||||
+ (<A HREF="GSXMLAttribute.html#GSXMLAttribute">GSXMLAttribute</A>*) <b>attributeFrom:</b> (void*)data;<br>
|
||||
+ (GSXMLAttribute*) <b>attributeFrom:</b> (void*)data;<br>
|
||||
|
||||
<p>
|
||||
Creation of a new Attribute from libxml data.
|
||||
|
@ -59,7 +59,7 @@ Creation of a new Attribute from libxml data.
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">initWithNode:name:value:</a></h3>
|
||||
- (id) <b>initWithNode:</b> (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*)node <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>value:</b> (<A HREF="NSString.html#NSString">NSString</A>*)value;<br>
|
||||
- (id) <b>initWithNode:</b> (GSXMLNode*)node <b>name:</b> (NSString*)name <b>value:</b> (NSString*)value;<br>
|
||||
|
||||
<p>
|
||||
Create a new property carried by a node.
|
||||
|
@ -87,7 +87,7 @@ Return pointer to xmlAttribute structure.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">name</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>name</b>;<br>
|
||||
- (NSString*) <b>name</b>;<br>
|
||||
|
||||
<p>
|
||||
Return a Attribute name.
|
||||
|
@ -96,7 +96,7 @@ Return a Attribute name.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">value</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>value</b>;<br>
|
||||
- (NSString*) <b>value</b>;<br>
|
||||
|
||||
<p>
|
||||
Return a value of this attribute.
|
||||
|
@ -105,7 +105,7 @@ Return a value of this attribute.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-7">next</a></h3>
|
||||
- (<A HREF="GSXMLAttribute.html#GSXMLAttribute">GSXMLAttribute</A>*) <b>next</b>;<br>
|
||||
- (GSXMLAttribute*) <b>next</b>;<br>
|
||||
|
||||
<p>
|
||||
Return next Attribute.
|
||||
|
@ -128,7 +128,7 @@ Return next Attribute.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-9">prev</a></h3>
|
||||
- (<A HREF="GSXMLAttribute.html#GSXMLAttribute">GSXMLAttribute</A>*) <b>prev</b>;<br>
|
||||
- (GSXMLAttribute*) <b>prev</b>;<br>
|
||||
|
||||
<p>
|
||||
Return previous Attribute.
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">GSXMLDocument</a></h2>
|
||||
<h2><a name ="GSXMLDocument">GSXMLDocument</a></h2>
|
||||
<p><b>Declared in: </b> GSXML.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<hr>
|
||||
|
||||
<p>
|
||||
|
@ -44,7 +44,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">documentWithVersion:</a></h3>
|
||||
+ (<A HREF="GSXMLDocument.html#GSXMLDocument">GSXMLDocument</A>*) <b>documentWithVersion:</b> (<A HREF="NSString.html#NSString">NSString</A>*)version;<br>
|
||||
+ (GSXMLDocument*) <b>documentWithVersion:</b> (NSString*)version;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -73,7 +73,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-3">documentFrom:</a></h3>
|
||||
+ (<A HREF="GSXMLDocument.html#GSXMLDocument">GSXMLDocument</A>*) <b>documentFrom:</b> (void*)data;<br>
|
||||
+ (GSXMLDocument*) <b>documentFrom:</b> (void*)data;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -84,7 +84,7 @@
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-2">initWithVersion:</a></h3>
|
||||
- (id) <b>initWithVersion:</b> (<A HREF="NSString.html#NSString">NSString</A>*)version;<br>
|
||||
- (id) <b>initWithVersion:</b> (NSString*)version;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -105,7 +105,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">version</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>version</b>;<br>
|
||||
- (NSString*) <b>version</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -115,7 +115,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">encoding</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>encoding</b>;<br>
|
||||
- (NSString*) <b>encoding</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -125,7 +125,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-7">save:</a></h3>
|
||||
- (void) <b>save:</b> (<A HREF="NSString.html#NSString">NSString</A>*)filename;<br>
|
||||
- (void) <b>save:</b> (NSString*)filename;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -145,7 +145,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-9">root</a></h3>
|
||||
- (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>root</b>;<br>
|
||||
- (GSXMLNode*) <b>root</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -155,7 +155,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-10">setRoot:</a></h3>
|
||||
- (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>setRoot:</b> (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*)node;<br>
|
||||
- (GSXMLNode*) <b>setRoot:</b> (GSXMLNode*)node;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -166,7 +166,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-11">makeNodeWithNamespace:name:content:</a></h3>
|
||||
- (<A HREF="GSXMLDocument.html#GSXMLDocument">GSXMLDocument</A>*) <b>makeNodeWithNamespace:</b> (<A HREF="GSXMLNamespace.html#GSXMLNamespace">GSXMLNamespace</A>*)ns <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>content:</b> (<A HREF="NSString.html#NSString">NSString</A>*)content;<br>
|
||||
- (GSXMLDocument*) <b>makeNodeWithNamespace:</b> (GSXMLNamespace*)ns <b>name:</b> (NSString*)name <b>content:</b> (NSString*)content;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<h2><a name ="cont-0">GSXMLNamespace</a></h2>
|
||||
<h2><a name ="GSXMLNamespace">GSXMLNamespace</a></h2>
|
||||
<p><b>Declared in: </b> GSXML.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<hr>
|
||||
|
||||
XML namespace.
|
||||
|
@ -39,7 +39,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">namespaceWithNode:prefix:href:</a></h3>
|
||||
+ (<A HREF="GSXMLNamespace.html#GSXMLNamespace">GSXMLNamespace</A>*) <b>namespaceWithNode:</b> (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*)node <b>prefix:</b> (<A HREF="NSString.html#NSString">NSString</A>*)prefix <b>href:</b> (<A HREF="NSString.html#NSString">NSString</A>*)href;<br>
|
||||
+ (GSXMLNamespace*) <b>namespaceWithNode:</b> (GSXMLNode*)node <b>prefix:</b> (NSString*)prefix <b>href:</b> (NSString*)href;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -79,7 +79,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-3">namespaceFrom:</a></h3>
|
||||
+ (<A HREF="GSXMLNamespace.html#GSXMLNamespace">GSXMLNamespace</A>*) <b>namespaceFrom:</b> (void*)data;<br>
|
||||
+ (GSXMLNamespace*) <b>namespaceFrom:</b> (void*)data;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -90,7 +90,7 @@
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-2">initWithNode:prefix:href:</a></h3>
|
||||
- (id) <b>initWithNode:</b> (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*)node <b>prefix:</b> (<A HREF="NSString.html#NSString">NSString</A>*)prefix <b>href:</b> (<A HREF="NSString.html#NSString">NSString</A>*)href;<br>
|
||||
- (id) <b>initWithNode:</b> (GSXMLNode*)node <b>prefix:</b> (NSString*)prefix <b>href:</b> (NSString*)href;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -123,7 +123,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">prefix</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>prefix</b>;<br>
|
||||
- (NSString*) <b>prefix</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -133,7 +133,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-7">href</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>href</b>;<br>
|
||||
- (NSString*) <b>href</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -153,7 +153,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-9">next</a></h3>
|
||||
- (<A HREF="GSXMLNamespace.html#GSXMLNamespace">GSXMLNamespace</A>*) <b>next</b>;<br>
|
||||
- (GSXMLNamespace*) <b>next</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<h2><a name ="cont-0">GSXMLNode</a></h2>
|
||||
<h2><a name ="GSXMLNode">GSXMLNode</a></h2>
|
||||
<p><b>Declared in: </b> GSXML.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<hr>
|
||||
|
||||
<p>
|
||||
|
@ -57,7 +57,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">nodeWithNamespace:name:prefix:</a></h3>
|
||||
+ (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>nodeWithNamespace:</b> (<A HREF="GSXMLNamespace.html#GSXMLNamespace">GSXMLNamespace</A>*)ns <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>prefix:</b> (<A HREF="NSString.html#NSString">NSString</A>*)prefix;<br>
|
||||
+ (GSXMLNode*) <b>nodeWithNamespace:</b> (GSXMLNamespace*)ns <b>name:</b> (NSString*)name <b>prefix:</b> (NSString*)prefix;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -89,7 +89,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-3">nodeFrom:</a></h3>
|
||||
+ (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>nodeFrom:</b> (void*)data;<br>
|
||||
+ (GSXMLNode*) <b>nodeFrom:</b> (void*)data;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -100,7 +100,7 @@
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-2">initWithNamespace:name:prefix:</a></h3>
|
||||
- (id) <b>initWithNamespace:</b> (<A HREF="GSXMLNamespace.html#GSXMLNamespace">GSXMLNamespace</A>*)ns <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>prefix:</b> (<A HREF="NSString.html#NSString">NSString</A>*)prefix;<br>
|
||||
- (id) <b>initWithNamespace:</b> (GSXMLNamespace*)ns <b>name:</b> (NSString*)name <b>prefix:</b> (NSString*)prefix;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -131,7 +131,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">name</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>name</b>;<br>
|
||||
- (NSString*) <b>name</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -141,7 +141,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-7">content</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>content</b>;<br>
|
||||
- (NSString*) <b>content</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -151,7 +151,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-8">ns</a></h3>
|
||||
- (<A HREF="GSXMLNamespace.html#GSXMLNamespace">GSXMLNamespace</A>*) <b>ns</b>;<br>
|
||||
- (GSXMLNamespace*) <b>ns</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -161,7 +161,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-9">nsDef</a></h3>
|
||||
- (<A HREF="GSXMLNamespace.html#GSXMLNamespace">GSXMLNamespace</A>*) <b>nsDef</b>;<br>
|
||||
- (GSXMLNamespace*) <b>nsDef</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -171,7 +171,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-10">properties</a></h3>
|
||||
- (<A HREF="GSXMLAttribute.html#GSXMLAttribute">GSXMLAttribute</A>*) <b>properties</b>;<br>
|
||||
- (GSXMLAttribute*) <b>properties</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -203,7 +203,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-12">propertiesAsDictionary</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>propertiesAsDictionary</b>;<br>
|
||||
- (NSDictionary*) <b>propertiesAsDictionary</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -242,7 +242,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-15">typeDescription</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>typeDescription</b>;<br>
|
||||
- (NSString*) <b>typeDescription</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -252,7 +252,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-16">doc</a></h3>
|
||||
- (<A HREF="GSXMLDocument.html#GSXMLDocument">GSXMLDocument</A>*) <b>doc</b>;<br>
|
||||
- (GSXMLDocument*) <b>doc</b>;<br>
|
||||
|
||||
<p>
|
||||
Return owner of this node.
|
||||
|
@ -261,7 +261,7 @@ Return owner of this node.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-17">children</a></h3>
|
||||
- (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>children</b>;<br>
|
||||
- (GSXMLNode*) <b>children</b>;<br>
|
||||
|
||||
<p>
|
||||
Return children of this node.
|
||||
|
@ -293,7 +293,7 @@ Return children of this node.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-19">parent</a></h3>
|
||||
- (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>parent</b>;<br>
|
||||
- (GSXMLNode*) <b>parent</b>;<br>
|
||||
|
||||
<p>
|
||||
Return parent of this node.
|
||||
|
@ -302,7 +302,7 @@ Return parent of this node.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-20">next</a></h3>
|
||||
- (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>next</b>;<br>
|
||||
- (GSXMLNode*) <b>next</b>;<br>
|
||||
|
||||
<p>
|
||||
Return next node.
|
||||
|
@ -311,7 +311,7 @@ Return next node.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-21">prev</a></h3>
|
||||
- (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>prev</b>;<br>
|
||||
- (GSXMLNode*) <b>prev</b>;<br>
|
||||
|
||||
<p>
|
||||
Return previous node.
|
||||
|
@ -320,7 +320,7 @@ Return previous node.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-22">makeChild:name:content:</a></h3>
|
||||
- (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>makeChild:</b> (<A HREF="GSXMLNamespace.html#GSXMLNamespace">GSXMLNamespace</A>*)ns <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>content:</b> (<A HREF="NSString.html#NSString">NSString</A>*)content;<br>
|
||||
- (GSXMLNode*) <b>makeChild:</b> (GSXMLNamespace*)ns <b>name:</b> (NSString*)name <b>content:</b> (NSString*)content;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -358,7 +358,7 @@ Return previous node.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-24">makeComment:</a></h3>
|
||||
- (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>makeComment:</b> (<A HREF="NSString.html#NSString">NSString</A>*)content;<br>
|
||||
- (GSXMLNode*) <b>makeComment:</b> (NSString*)content;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -381,7 +381,7 @@ Return previous node.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-26">makePI:</a></h3>
|
||||
- (<A HREF="GSXMLNode.html#GSXMLNode">GSXMLNode</A>*) <b>makePI:</b> (<A HREF="NSString.html#NSString">NSString</A>*)content;<br>
|
||||
- (GSXMLNode*) <b>makePI:</b> (NSString*)content;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -405,7 +405,7 @@ Return previous node.
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-28">setProp:value:</a></h3>
|
||||
- (<A HREF="GSXMLAttribute.html#GSXMLAttribute">GSXMLAttribute</A>*) <b>setProp:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>value:</b> (<A HREF="NSString.html#NSString">NSString</A>*)value;<br>
|
||||
- (GSXMLAttribute*) <b>setProp:</b> (NSString*)name <b>value:</b> (NSString*)value;<br>
|
||||
|
||||
<p>
|
||||
Set (or reset) an attribute carried by a node.
|
||||
|
|
|
@ -22,26 +22,40 @@
|
|||
<p>
|
||||
The XML parser object is the pivotal part of parsing an XML
|
||||
document - it will either build a tree representing the
|
||||
document, or will cooperate with a GSSAXHandler object to
|
||||
provide parsing without the overhead of building a tree.
|
||||
document (if initialized without a GSSAXHandler), or will
|
||||
cooperate with a GSSAXHandler object to provide parsing
|
||||
without the overhead of building a tree.
|
||||
</p>
|
||||
<p>
|
||||
The parser may be initialized with an input source (in which
|
||||
case it will expect to be asked to parse the entire input in
|
||||
a single operation), or without. If it is initialised without
|
||||
an input source, incremental parsing can be done by feeding
|
||||
successive parts of the XML document into the parser as
|
||||
NSData objects.
|
||||
</p>
|
||||
</desc>
|
||||
|
||||
<method type="GSXMLParser*" factory="yes">
|
||||
<sel>parser</sel>
|
||||
<desc>
|
||||
<p>
|
||||
Creation of a new Parser (for incremental parsing)
|
||||
by calling initWithSAXHandler:
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="GSXMLParser*" factory="yes">
|
||||
<sel>parser:</sel>
|
||||
<arg type="id">source</arg>
|
||||
<sel>parserWithContentsOfFile:</sel>
|
||||
<arg type="NSString*">path</arg>
|
||||
<desc>
|
||||
<p>Creation of a new Parser by calling initWithSAXHandler:source:
|
||||
</p>
|
||||
<p>
|
||||
Source must be <code>NSString</code> (file name),
|
||||
<code>NSData</code> (raw document contnets),
|
||||
<code>NSURL</code> (not yet implemented),
|
||||
or <code>nil</code> (for incremental parsing).
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withContentsOfFile:
|
||||
</p>
|
||||
<example>
|
||||
GSXMLParser *p = [GSXMLParser parser: @"macos.xml"];
|
||||
GSXMLParser *p = [GSXMLParser parserWithContentsOfFile: @"macos.xml"];
|
||||
|
||||
if ([p parse])
|
||||
{
|
||||
|
@ -53,35 +67,60 @@
|
|||
}
|
||||
|
||||
</example>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="GSXMLParser*" factory="yes">
|
||||
<sel>parserWithContentsOfURL:</sel>
|
||||
<arg type="NSURL*">url</arg>
|
||||
<desc>
|
||||
<p>
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withContentsOfURL:
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="GSXMLParser*" factory="yes">
|
||||
<sel>parserWithData:</sel>
|
||||
<arg type="NSData*">data</arg>
|
||||
<desc>
|
||||
<p>Creation of a new Parser by calling
|
||||
initWithSAXHandler:withData:
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="GSXMlParser*" factory="yes">
|
||||
<sel>parserWithSAXHandler:</sel>
|
||||
<arg type="GSSAXHandler*">handler</arg>
|
||||
<sel>source:</sel>
|
||||
<arg type="id">source</arg>
|
||||
<desc>
|
||||
<p>
|
||||
Creation of a new Parser by calling initWithSAXHandler:source:
|
||||
</p>
|
||||
<p>
|
||||
Source must be <code>NSString</code> (file name),
|
||||
<code>NSData</code> (raw document contnets),
|
||||
<code>NSURL</code> (not yet implemented),
|
||||
or <code>nil</code> (for incremental parsing).
|
||||
Creation of a new Parser by calling initWithSAXHandler:
|
||||
</p>
|
||||
<p>
|
||||
If the handler object supplied is nil, the parser will build
|
||||
a tree representing the parsed file rather than attempting
|
||||
to get the handler to deal with the parsed elements and entities.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="GSXMlParser*" factory="yes">
|
||||
<sel>parserWithSAXHandler:</sel>
|
||||
<arg type="GSSAXHandler*">handler</arg>
|
||||
<sel>withContentsOfFile:</sel>
|
||||
<arg type="NSString*">path</arg>
|
||||
<desc>
|
||||
<p>
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withContentsOfFile:
|
||||
</p>
|
||||
<example>
|
||||
NSAutoreleasePool *arp = [[NSAutoreleasePool alloc] init];
|
||||
GSSAXHandler *h = [GSDebugSAXHandler handler];
|
||||
GSXMLParser *p = [GSXMLParser parserWithSAXHandler: h
|
||||
source: @"macos.xml"];
|
||||
withContentsOfFile: @"macos.xml"];
|
||||
|
||||
if ([p parse])
|
||||
{
|
||||
|
@ -94,6 +133,32 @@
|
|||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="GSXMlParser*" factory="yes">
|
||||
<sel>parserWithSAXHandler:</sel>
|
||||
<arg type="GSSAXHandler*">handler</arg>
|
||||
<sel>withContentsOfURL:</sel>
|
||||
<arg type="NSURL*">url</arg>
|
||||
<desc>
|
||||
<p>
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withContentsOfURL:
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="GSXMlParser*" factory="yes">
|
||||
<sel>parserWithSAXHandler:</sel>
|
||||
<arg type="GSSAXHandler*">handler</arg>
|
||||
<sel>withData:</sel>
|
||||
<arg type="NSData*">data</arg>
|
||||
<desc>
|
||||
<p>
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withData:
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*" factory="yes">
|
||||
<sel>xmlEncodingStringForStringEncoding:</sel>
|
||||
<arg type="NSStringEncoding">encoding</arg>
|
||||
|
@ -106,30 +171,75 @@
|
|||
<method type="id" init="yes">
|
||||
<sel>initWithSAXHandler:</sel>
|
||||
<arg type="GSSAXHandler*">handler</arg>
|
||||
<sel>source:</sel>
|
||||
<arg type="id">source</arg>
|
||||
<desc>
|
||||
<p>
|
||||
Initialisation of a new Parser with SAX handler (if not nil).
|
||||
</p>
|
||||
<p>
|
||||
The source object is intended to be any reasonable value,
|
||||
but for initial implementation may be an NSData object
|
||||
containing raw XML text, or the name of a file to parse.
|
||||
</p>
|
||||
<p>
|
||||
In the future, it is intended that this method will also
|
||||
support NSYRL objects.
|
||||
</p>
|
||||
<p>
|
||||
If the source object is <code>nil</code> then the parser will
|
||||
be initialised for incremental parsing.
|
||||
</p>
|
||||
<p>
|
||||
If the handler object supplied is nil, the parser will build
|
||||
a tree representing the parsed file rather than attempting
|
||||
to get the handler to deal with the parsed elements and entities.
|
||||
</p>
|
||||
<p>
|
||||
The source for the parsing process is not specified - so
|
||||
parsing must be done incfrementally by feeding data to the
|
||||
parser.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="id">
|
||||
<sel>initWithSAXHandler:</sel>
|
||||
<arg type="GSSAXHandler*">handler</arg>
|
||||
<sel>withContentsOfFile:</sel>
|
||||
<arg type="NSString*">path</arg>
|
||||
<desc>
|
||||
<p>
|
||||
Initialisation of a new Parser with SAX handler (if not nil)
|
||||
by calling initWithSAXHandler:
|
||||
</p>
|
||||
<p>
|
||||
Sets the input source for the parser to be the specified file -
|
||||
so parsing of the entire file will be performed rather than
|
||||
incremental parsing.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="id">
|
||||
<sel>initWithSAXHandler:</sel>
|
||||
<arg type="GSSAXHandler*">handler</arg>
|
||||
<sel>withContentsOfURL:</sel>
|
||||
<arg type="NSURL*">url</arg>
|
||||
<desc>
|
||||
<p>
|
||||
Initialisation of a new Parser with SAX handler (if not nil)
|
||||
by calling initWithSAXHandler:
|
||||
</p>
|
||||
<p>
|
||||
Sets the input source for the parser to be the specified URL -
|
||||
so parsing of the entire document will be performed rather than
|
||||
incremental parsing.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="id">
|
||||
<sel>initWithSAXHandler:</sel>
|
||||
<arg type="GSSAXHandler*">handler</arg>
|
||||
<sel>withData:</sel>
|
||||
<arg type="NSData*">data</arg>
|
||||
<desc>
|
||||
<p>
|
||||
Initialisation of a new Parser with SAX handler (if not nil)
|
||||
by calling initWithSAXHandler:
|
||||
</p>
|
||||
<p>
|
||||
Sets the input source for the parser to be the specified data
|
||||
object (which must contain a nul terminated XML document),
|
||||
so parsing of the entire document will be performed rather than
|
||||
incremental parsing.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
|
@ -157,7 +267,7 @@
|
|||
This method should be called once to parse the entiore document.
|
||||
</p>
|
||||
<example>
|
||||
GSXMLParser *p = [GSXMLParser parser:@"macos.xml"];
|
||||
GSXMLParser *p = [GSXMLParser parserWithContentsOfFile:@"macos.xml"];
|
||||
|
||||
if ([p parse])
|
||||
{
|
||||
|
@ -207,9 +317,10 @@
|
|||
<sel>substituteEntites:</sel>
|
||||
<arg type="BOOL">yesno</arg>
|
||||
<desc>
|
||||
<p>Set and return the previous value for default entity support.
|
||||
Initially the parser always keep entity references instead of substituting
|
||||
entity values in the output.
|
||||
<p>
|
||||
Set and return the previous value for default entity support.
|
||||
Initially the parser always keeps entity references instead
|
||||
of substituting entity values in the output.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
@ -218,9 +329,12 @@
|
|||
<sel>keepBlanks:</sel>
|
||||
<arg type="BOOL">yesno</arg>
|
||||
<desc>
|
||||
<p>Set and return the previous value for default blanks text nodes support.
|
||||
ignorableWhitespace() are only generated when running the parser in validating mode
|
||||
and when the current element doesn't allow CDATA or mixed content.
|
||||
<p>
|
||||
Set and return the previous value for default blanks
|
||||
text nodes support.
|
||||
ignorableWhitespace() are only generated when running
|
||||
the parser in validating mode and when the current element
|
||||
doesn't allow CDATA or mixed content.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
@ -236,7 +350,8 @@
|
|||
<sel>doValidityChecking:</sel>
|
||||
<arg type="BOOL">yesno</arg>
|
||||
<desc>
|
||||
<p>Sets whether the document needs to be validated.
|
||||
<p>
|
||||
Sets whether the document needs to be validated.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
@ -244,7 +359,8 @@
|
|||
<method type="int">
|
||||
<sel>errNo</sel>
|
||||
<desc>
|
||||
<p>Return error code.
|
||||
<p>
|
||||
Return error code.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
@ -253,7 +369,8 @@
|
|||
<sel>setExternalEntityLoader</sel>
|
||||
<arg type="void*">function</arg>
|
||||
<desc>
|
||||
<p>Set a external entity loader.
|
||||
<p>
|
||||
Set a external entity loader.
|
||||
</p>
|
||||
</desc>
|
||||
</method>
|
||||
|
|
|
@ -25,8 +25,19 @@
|
|||
|
||||
The XML parser object is the pivotal part of parsing an XML
|
||||
document - it will either build a tree representing the
|
||||
document, or will cooperate with a GSSAXHandler object to
|
||||
provide parsing without the overhead of building a tree.
|
||||
document (if initialized without a GSSAXHandler), or will
|
||||
cooperate with a GSSAXHandler object to provide parsing
|
||||
without the overhead of building a tree.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
The parser may be initialized with an input source (in which
|
||||
case it will expect to be asked to parse the entire input in
|
||||
a single operation), or without. If it is initialised without
|
||||
an input source, incremental parsing can be done by feeding
|
||||
successive parts of the XML document into the parser as
|
||||
NSData objects.
|
||||
</p>
|
||||
|
||||
|
||||
|
@ -35,41 +46,55 @@
|
|||
</ul>
|
||||
<h2>Methods </h2>
|
||||
<ul>
|
||||
<li><a href="GSXMLParser.html#method-0">+parser:</a>
|
||||
<li><a href="GSXMLParser.html#method-2">+parserWithSAXHandler:source:</a>
|
||||
<li><a href="GSXMLParser.html#method-4">+xmlEncodingStringForStringEncoding:</a>
|
||||
<li><a href="GSXMLParser.html#method-15">-doValidityChecking:</a>
|
||||
<li><a href="GSXMLParser.html#method-7">-doc</a>
|
||||
<li><a href="GSXMLParser.html#method-16">-errNo</a>
|
||||
<li><a href="GSXMLParser.html#method-14">-getWarnings:</a>
|
||||
<li><a href="GSXMLParser.html#method-5">-initWithSAXHandler:source:</a>
|
||||
<li><a href="GSXMLParser.html#method-13">-keepBlanks:</a>
|
||||
<li><a href="GSXMLParser.html#method-6">-lib</a>
|
||||
<li><a href="GSXMLParser.html#method-8">-parse</a>
|
||||
<li><a href="GSXMLParser.html#method-10">-parse:</a>
|
||||
<li><a href="GSXMLParser.html#method-17">-setExternalEntityLoader</a>
|
||||
<li><a href="GSXMLParser.html#method-12">-substituteEntites:</a>
|
||||
<li><a href ="GSXMLParser.html#method-0">+parser</a>
|
||||
<li><a href ="GSXMLParser.html#method-1">+parserWithContentsOfFile:</a>
|
||||
<li><a href ="GSXMLParser.html#method-3">+parserWithContentsOfURL:</a>
|
||||
<li><a href ="GSXMLParser.html#method-4">+parserWithData:</a>
|
||||
<li><a href ="GSXMLParser.html#method-5">+parserWithSAXHandler:</a>
|
||||
<li><a href ="GSXMLParser.html#method-6">+parserWithSAXHandler:withContentsOfFile:</a>
|
||||
<li><a href ="GSXMLParser.html#method-8">+parserWithSAXHandler:withContentsOfURL:</a>
|
||||
<li><a href ="GSXMLParser.html#method-9">+parserWithSAXHandler:withData:</a>
|
||||
<li><a href ="GSXMLParser.html#method-10">+xmlEncodingStringForStringEncoding:</a>
|
||||
<li><a href ="GSXMLParser.html#method-24">-doValidityChecking:</a>
|
||||
<li><a href ="GSXMLParser.html#method-16">-doc</a>
|
||||
<li><a href ="GSXMLParser.html#method-25">-errNo</a>
|
||||
<li><a href ="GSXMLParser.html#method-23">-getWarnings:</a>
|
||||
<li><a href ="GSXMLParser.html#method-11">-initWithSAXHandler:</a>
|
||||
<li><a href ="GSXMLParser.html#method-12">-initWithSAXHandler:withContentsOfFile:</a>
|
||||
<li><a href ="GSXMLParser.html#method-13">-initWithSAXHandler:withContentsOfURL:</a>
|
||||
<li><a href ="GSXMLParser.html#method-14">-initWithSAXHandler:withData:</a>
|
||||
<li><a href ="GSXMLParser.html#method-22">-keepBlanks:</a>
|
||||
<li><a href ="GSXMLParser.html#method-15">-lib</a>
|
||||
<li><a href ="GSXMLParser.html#method-17">-parse</a>
|
||||
<li><a href ="GSXMLParser.html#method-19">-parse:</a>
|
||||
<li><a href ="GSXMLParser.html#method-26">-setExternalEntityLoader</a>
|
||||
<li><a href ="GSXMLParser.html#method-21">-substituteEntites:</a>
|
||||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name="method-0">parser:</a></h3>
|
||||
+ (<A HREF="GSXMLParser.html#GSXMLParser">GSXMLParser</A>*) <b>parser:</b> (id)source;<br>
|
||||
|
||||
<p>
|
||||
Creation of a new Parser by calling initWithSAXHandler:source:
|
||||
</p>
|
||||
<h3><a name ="method-0">parser</a></h3>
|
||||
+ (GSXMLParser*) <b>parser</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Source must be <code>NSString</code> (file name),
|
||||
<code>NSData</code> (raw document contnets),
|
||||
<code>NSURL</code> (not yet implemented),
|
||||
or <code>nil</code> (for incremental parsing).
|
||||
Creation of a new Parser (for incremental parsing)
|
||||
by calling initWithSAXHandler:
|
||||
</p>
|
||||
|
||||
<a name="label-1">example</a>
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">parserWithContentsOfFile:</a></h3>
|
||||
+ (GSXMLParser*) <b>parserWithContentsOfFile:</b> (NSString*)path;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withContentsOfFile:
|
||||
</p>
|
||||
|
||||
<a name ="label-2">example </a>
|
||||
<pre>
|
||||
|
||||
GSXMLParser *p = [GSXMLParser parser: @"macos.xml"];
|
||||
GSXMLParser *p = [GSXMLParser parserWithContentsOfFile: @"macos.xml"];
|
||||
|
||||
if ([p parse])
|
||||
{
|
||||
|
@ -84,22 +109,34 @@ Creation of a new Parser by calling initWithSAXHandler:source:
|
|||
</pre>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-2">parserWithSAXHandler:source:</a></h3>
|
||||
+ (GSXMlParser*) <b>parserWithSAXHandler:</b> (GSSAXHandler*)handler <b>source:</b> (id)source;<br>
|
||||
<h3><a name ="method-3">parserWithContentsOfURL:</a></h3>
|
||||
+ (GSXMLParser*) <b>parserWithContentsOfURL:</b> (NSURL*)url;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Creation of a new Parser by calling initWithSAXHandler:source:
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withContentsOfURL:
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">parserWithData:</a></h3>
|
||||
+ (GSXMLParser*) <b>parserWithData:</b> (NSData*)data;<br>
|
||||
|
||||
<p>
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withData:
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">parserWithSAXHandler:</a></h3>
|
||||
+ (GSXMlParser*) <b>parserWithSAXHandler:</b> (GSSAXHandler*)handler;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Source must be <code>NSString</code> (file name),
|
||||
<code>NSData</code> (raw document contnets),
|
||||
<code>NSURL</code> (not yet implemented),
|
||||
or <code>nil</code> (for incremental parsing).
|
||||
Creation of a new Parser by calling initWithSAXHandler:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
@ -109,13 +146,24 @@ Creation of a new Parser by calling initWithSAXHandler:source:
|
|||
to get the handler to deal with the parsed elements and entities.
|
||||
</p>
|
||||
|
||||
<a name="label-3">example</a>
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">parserWithSAXHandler:withContentsOfFile:</a></h3>
|
||||
+ (GSXMlParser*) <b>parserWithSAXHandler:</b> (GSSAXHandler*)handler <b>withContentsOfFile:</b> (NSString*)path;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withContentsOfFile:
|
||||
</p>
|
||||
|
||||
<a name ="label-7">example </a>
|
||||
<pre>
|
||||
|
||||
NSAutoreleasePool *arp = [[NSAutoreleasePool alloc] init];
|
||||
GSSAXHandler *h = [GSDebugSAXHandler handler];
|
||||
GSXMLParser *p = [GSXMLParser parserWithSAXHandler: h
|
||||
source: @"macos.xml"];
|
||||
withContentsOfFile: @"macos.xml"];
|
||||
|
||||
if ([p parse])
|
||||
{
|
||||
|
@ -129,7 +177,29 @@ Creation of a new Parser by calling initWithSAXHandler:source:
|
|||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-4">xmlEncodingStringForStringEncoding:</a></h3>
|
||||
<h3><a name ="method-8">parserWithSAXHandler:withContentsOfURL:</a></h3>
|
||||
+ (GSXMlParser*) <b>parserWithSAXHandler:</b> (GSSAXHandler*)handler <b>withContentsOfURL:</b> (NSURL*)url;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withContentsOfURL:
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">parserWithSAXHandler:withData:</a></h3>
|
||||
+ (GSXMlParser*) <b>parserWithSAXHandler:</b> (GSSAXHandler*)handler <b>withData:</b> (NSData*)data;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Creation of a new Parser by calling
|
||||
initWithSAXHandler:withData:
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">xmlEncodingStringForStringEncoding:</a></h3>
|
||||
+ (NSString*) <b>xmlEncodingStringForStringEncoding:</b> (NSStringEncoding)encoding;<br>
|
||||
|
||||
Return the name of the string encoding (for XML) to use for the
|
||||
|
@ -137,34 +207,15 @@ Creation of a new Parser by calling initWithSAXHandler:source:
|
|||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name="method-5">initWithSAXHandler:source:</a></h3>
|
||||
<h3><a name ="method-11">initWithSAXHandler:</a></h3>
|
||||
<b>This is the designated initialiser </b><br>
|
||||
- (id) <b>initWithSAXHandler:</b> (GSSAXHandler*)handler <b>source:</b> (id)source;<br>
|
||||
- (id) <b>initWithSAXHandler:</b> (GSSAXHandler*)handler;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Initialisation of a new Parser with SAX handler (if not nil).
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
The source object is intended to be any reasonable value,
|
||||
but for initial implementation may be an NSData object
|
||||
containing raw XML text, or the name of a file to parse.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
In the future, it is intended that this method will also
|
||||
support NSYRL objects.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
If the source object is <code>nil</code> then the parser will
|
||||
be initialised for incremental parsing.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
If the handler object supplied is nil, the parser will build
|
||||
|
@ -172,9 +223,71 @@ Creation of a new Parser by calling initWithSAXHandler:source:
|
|||
to get the handler to deal with the parsed elements and entities.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
The source for the parsing process is not specified - so
|
||||
parsing must be done incfrementally by feeding data to the
|
||||
parser.
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-6">lib</a></h3>
|
||||
<h3><a name ="method-12">initWithSAXHandler:withContentsOfFile:</a></h3>
|
||||
- (id) <b>initWithSAXHandler:</b> (GSSAXHandler*)handler <b>withContentsOfFile:</b> (NSString*)path;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Initialisation of a new Parser with SAX handler (if not nil)
|
||||
by calling initWithSAXHandler:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
Sets the input source for the parser to be the specified file -
|
||||
so parsing of the entire file will be performed rather than
|
||||
incremental parsing.
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">initWithSAXHandler:withContentsOfURL:</a></h3>
|
||||
- (id) <b>initWithSAXHandler:</b> (GSSAXHandler*)handler <b>withContentsOfURL:</b> (NSURL*)url;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Initialisation of a new Parser with SAX handler (if not nil)
|
||||
by calling initWithSAXHandler:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
Sets the input source for the parser to be the specified URL -
|
||||
so parsing of the entire document will be performed rather than
|
||||
incremental parsing.
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">initWithSAXHandler:withData:</a></h3>
|
||||
- (id) <b>initWithSAXHandler:</b> (GSSAXHandler*)handler <b>withData:</b> (NSData*)data;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Initialisation of a new Parser with SAX handler (if not nil)
|
||||
by calling initWithSAXHandler:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
Sets the input source for the parser to be the specified data
|
||||
object (which must contain a nul terminated XML document),
|
||||
so parsing of the entire document will be performed rather than
|
||||
incremental parsing.
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-15">lib</a></h3>
|
||||
- (void*) <b>lib</b>;<br>
|
||||
|
||||
<p>
|
||||
|
@ -183,7 +296,7 @@ Return pointer to xmlParserCtxt structure.
|
|||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-7">doc</a></h3>
|
||||
<h3><a name ="method-16">doc</a></h3>
|
||||
- (GSXMLDocument*) <b>doc</b>;<br>
|
||||
|
||||
<p>
|
||||
|
@ -192,7 +305,7 @@ Return GSXMLDocument object.
|
|||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-8">parse</a></h3>
|
||||
<h3><a name ="method-17">parse</a></h3>
|
||||
- (BOOL) <b>parse</b>;<br>
|
||||
|
||||
<p>
|
||||
|
@ -201,10 +314,10 @@ Return GSXMLDocument object.
|
|||
This method should be called once to parse the entiore document.
|
||||
</p>
|
||||
|
||||
<a name="label-9">example</a>
|
||||
<a name ="label-18">example </a>
|
||||
<pre>
|
||||
|
||||
GSXMLParser *p = [GSXMLParser parser:@"macos.xml"];
|
||||
GSXMLParser *p = [GSXMLParser parserWithContentsOfFile:@"macos.xml"];
|
||||
|
||||
if ([p parse])
|
||||
{
|
||||
|
@ -220,7 +333,7 @@ Return GSXMLDocument object.
|
|||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-10">parse:</a></h3>
|
||||
<h3><a name ="method-19">parse:</a></h3>
|
||||
- (BOOL) <b>parse:</b> (NSData*)data;<br>
|
||||
|
||||
<p>
|
||||
|
@ -234,7 +347,7 @@ Return GSXMLDocument object.
|
|||
parse a new document.
|
||||
</p>
|
||||
|
||||
<a name="label-11">example</a>
|
||||
<a name ="label-20">example </a>
|
||||
<pre>
|
||||
|
||||
GSXMLParser *p = [GSXMLParser parserWithSAXHandler: nil source: nil];
|
||||
|
@ -255,55 +368,62 @@ Return GSXMLDocument object.
|
|||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-12">substituteEntites:</a></h3>
|
||||
<h3><a name ="method-21">substituteEntites:</a></h3>
|
||||
- (BOOL) <b>substituteEntites:</b> (BOOL)yesno;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Set and return the previous value for default entity support.
|
||||
Initially the parser always keep entity references instead of substituting
|
||||
entity values in the output.
|
||||
Initially the parser always keeps entity references instead
|
||||
of substituting entity values in the output.
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-13">keepBlanks:</a></h3>
|
||||
<h3><a name ="method-22">keepBlanks:</a></h3>
|
||||
- (BOOL) <b>keepBlanks:</b> (BOOL)yesno;<br>
|
||||
|
||||
<p>
|
||||
Set and return the previous value for default blanks text nodes support.
|
||||
ignorableWhitespace() are only generated when running the parser in validating mode
|
||||
and when the current element doesn't allow CDATA or mixed content.
|
||||
|
||||
Set and return the previous value for default blanks
|
||||
text nodes support.
|
||||
ignorableWhitespace() are only generated when running
|
||||
the parser in validating mode and when the current element
|
||||
doesn't allow CDATA or mixed content.
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-14">getWarnings:</a></h3>
|
||||
<h3><a name ="method-23">getWarnings:</a></h3>
|
||||
- (BOOL) <b>getWarnings:</b> (BOOL)yesno;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-15">doValidityChecking:</a></h3>
|
||||
<h3><a name ="method-24">doValidityChecking:</a></h3>
|
||||
- (BOOL) <b>doValidityChecking:</b> (BOOL)yesno;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Sets whether the document needs to be validated.
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-16">errNo</a></h3>
|
||||
<h3><a name ="method-25">errNo</a></h3>
|
||||
- (int) <b>errNo</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Return error code.
|
||||
</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name="method-17">setExternalEntityLoader</a></h3>
|
||||
<h3><a name ="method-26">setExternalEntityLoader</a></h3>
|
||||
- (void) <b>setExternalEntityLoader</b> (void*)function;<br>
|
||||
|
||||
<p>
|
||||
|
||||
Set a external entity loader.
|
||||
</p>
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<h2><a name ="cont-0">NSArchiver</a></h2>
|
||||
<h2><a name ="NSArchiver">NSArchiver</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSArchiver.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSCoder.html#NSCoder">NSCoder</A></p>
|
||||
<p><b>Inherits from: </b> NSCoder</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -49,17 +49,17 @@
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-2">archiverData</a></h3>
|
||||
- (<A HREF="NSMutableData.html#NSMutableData">NSMutableData</A>*) <b>archiverData</b>;<br>
|
||||
- (NSMutableData*) <b>archiverData</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">classNameEncodedForTrueClassName:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>classNameEncodedForTrueClassName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)trueName;<br>
|
||||
- (NSString*) <b>classNameEncodedForTrueClassName:</b> (NSString*)trueName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">encodeClassName:intoClassName:</a></h3>
|
||||
- (void) <b>encodeClassName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)trueName <b>intoClassName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)inArchiveName;<br>
|
||||
- (void) <b>encodeClassName:</b> (NSString*)trueName <b>intoClassName:</b> (NSString*)inArchiveName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -74,7 +74,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-7">initForWritingWithMutableData:</a></h3>
|
||||
- (id) <b>initForWritingWithMutableData:</b> (<A HREF="NSMutableData.html#NSMutableData">NSMutableData</A>*)data;<br>
|
||||
- (id) <b>initForWritingWithMutableData:</b> (NSMutableData*)data;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSArray</a></h2>
|
||||
<h2><a name ="NSArray">NSArray</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSArray.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -79,12 +79,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">arrayWithArray:</a></h3>
|
||||
+ (id) <b>arrayWithArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)anArray;<br>
|
||||
+ (id) <b>arrayWithArray:</b> (NSArray*)anArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">arrayWithContentsOfFile:</a></h3>
|
||||
+ (id) <b>arrayWithContentsOfFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aPath;<br>
|
||||
+ (id) <b>arrayWithContentsOfFile:</b> (NSString*)aPath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -105,17 +105,17 @@
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-7">arrayByAddingObject:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>arrayByAddingObject:</b> (id)anObject;<br>
|
||||
- (NSArray*) <b>arrayByAddingObject:</b> (id)anObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">arrayByAddingObjectsFromArray:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>arrayByAddingObjectsFromArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)otherArray;<br>
|
||||
- (NSArray*) <b>arrayByAddingObjectsFromArray:</b> (NSArray*)otherArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">componentsJoinedByString:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>componentsJoinedByString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)separator;<br>
|
||||
- (NSString*) <b>componentsJoinedByString:</b> (NSString*)separator;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -130,17 +130,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-12">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)locale;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)locale;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">firstObjectCommonWithArray:</a></h3>
|
||||
- (id) <b>firstObjectCommonWithArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)otherArray;<br>
|
||||
- (id) <b>firstObjectCommonWithArray:</b> (NSArray*)otherArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -175,12 +175,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-21">initWithArray:</a></h3>
|
||||
- (id) <b>initWithArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)anArray;<br>
|
||||
- (id) <b>initWithArray:</b> (NSArray*)anArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-22">initWithContentsOfFile:</a></h3>
|
||||
- (id) <b>initWithContentsOfFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aPath;<br>
|
||||
- (id) <b>initWithContentsOfFile:</b> (NSString*)aPath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -195,7 +195,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-25">isEqualToArray:</a></h3>
|
||||
- (BOOL) <b>isEqualToArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)otherArray;<br>
|
||||
- (BOOL) <b>isEqualToArray:</b> (NSArray*)otherArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -220,17 +220,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-30">objectEnumerator</a></h3>
|
||||
- (<A HREF="NSEnumerator.html#NSEnumerator">NSEnumerator</A>*) <b>objectEnumerator</b>;<br>
|
||||
- (NSEnumerator*) <b>objectEnumerator</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-31">pathsMatchingExtensions:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>pathsMatchingExtensions:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)filterTypes;<br>
|
||||
- (NSArray*) <b>pathsMatchingExtensions:</b> (NSArray*)filterTypes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-32">reverseObjectEnumerator</a></h3>
|
||||
- (<A HREF="NSEnumerator.html#NSEnumerator">NSEnumerator</A>*) <b>reverseObjectEnumerator</b>;<br>
|
||||
- (NSEnumerator*) <b>reverseObjectEnumerator</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -240,27 +240,27 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-34">sortedArrayUsingFunction:context:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>sortedArrayUsingFunction:</b> (int(*)(id,id,void*))comparator <b>context:</b> (void*)context;<br>
|
||||
- (NSArray*) <b>sortedArrayUsingFunction:</b> (int(*)(id,id,void*))comparator <b>context:</b> (void*)context;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-35">sortedArrayUsingFunction:context:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>sortedArrayUsingFunction:</b> (int(*)(id,id,void*))compare <b>context:</b> (void*)context;<br>
|
||||
- (NSArray*) <b>sortedArrayUsingFunction:</b> (int(*)(id,id,void*))compare <b>context:</b> (void*)context;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-36">sortedArrayUsingSelector:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>sortedArrayUsingSelector:</b> (SEL)comparator;<br>
|
||||
- (NSArray*) <b>sortedArrayUsingSelector:</b> (SEL)comparator;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-37">subarrayWithRange:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>subarrayWithRange:</b> (NSRange)range;<br>
|
||||
- (NSArray*) <b>subarrayWithRange:</b> (NSRange)range;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-38">writeToFile:atomically:</a></h3>
|
||||
- (BOOL) <b>writeToFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>atomically:</b> (BOOL)flag;<br>
|
||||
- (BOOL) <b>writeToFile:</b> (NSString*)path <b>atomically:</b> (BOOL)flag;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSAssertionHandler</a></h2>
|
||||
<h2><a name ="NSAssertionHandler">NSAssertionHandler</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSException.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -33,18 +33,18 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">currentHandler</a></h3>
|
||||
+ (<A HREF="NSAssertionHandler.html#NSAssertionHandler">NSAssertionHandler</A>*) <b>currentHandler</b>;<br>
|
||||
+ (NSAssertionHandler*) <b>currentHandler</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">handleFailureInFunction:file:lineNumber:description:</a></h3>
|
||||
- (void) <b>handleFailureInFunction:</b> (<A HREF="NSString.html#NSString">NSString</A>*)functionName <b>file:</b> (<A HREF="NSString.html#NSString">NSString</A>*)fileName <b>lineNumber:</b> (int)line <b>description:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format, ...;<br>
|
||||
- (void) <b>handleFailureInFunction:</b> (NSString*)functionName <b>file:</b> (NSString*)fileName <b>lineNumber:</b> (int)line <b>description:</b> (NSString*)format, ...;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">handleFailureInMethod:object:file:lineNumber:description:</a></h3>
|
||||
- (void) <b>handleFailureInMethod:</b> (SEL)selector <b>object:</b> (id)object <b>file:</b> (<A HREF="NSString.html#NSString">NSString</A>*)fileName <b>lineNumber:</b> (int)line <b>description:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format, ...;<br>
|
||||
- (void) <b>handleFailureInMethod:</b> (SEL)selector <b>object:</b> (id)object <b>file:</b> (NSString*)fileName <b>lineNumber:</b> (int)line <b>description:</b> (NSString*)format, ...;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSAttributedString</a></h2>
|
||||
<h2><a name ="NSAttributedString">NSAttributedString</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSAttributedString.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -41,47 +41,47 @@
|
|||
</ul>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-0">attribute:atIndex:effectiveRange:</a></h3>
|
||||
- (id) <b>attribute:</b> (<A HREF="NSString.html#NSString">NSString</A>*)attributeName <b>atIndex:</b> (unsigned int)index <b>effectiveRange:</b> (NSRange*)aRange;<br>
|
||||
- (id) <b>attribute:</b> (NSString*)attributeName <b>atIndex:</b> (unsigned int)index <b>effectiveRange:</b> (NSRange*)aRange;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">attribute:atIndex:longestEffectiveRange:inRange:</a></h3>
|
||||
- (id) <b>attribute:</b> (<A HREF="NSString.html#NSString">NSString</A>*)attributeName <b>atIndex:</b> (unsigned int)index <b>longestEffectiveRange:</b> (NSRange*)aRange <b>inRange:</b> (NSRange)rangeLimit;<br>
|
||||
- (id) <b>attribute:</b> (NSString*)attributeName <b>atIndex:</b> (unsigned int)index <b>longestEffectiveRange:</b> (NSRange*)aRange <b>inRange:</b> (NSRange)rangeLimit;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">attributedSubstringFromRange:</a></h3>
|
||||
- (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*) <b>attributedSubstringFromRange:</b> (NSRange)aRange;<br>
|
||||
- (NSAttributedString*) <b>attributedSubstringFromRange:</b> (NSRange)aRange;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">attributesAtIndex:effectiveRange:</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>attributesAtIndex:</b> (unsigned int)index <b>effectiveRange:</b> (NSRange*)aRange;<br>
|
||||
- (NSDictionary*) <b>attributesAtIndex:</b> (unsigned int)index <b>effectiveRange:</b> (NSRange*)aRange;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">attributesAtIndex:longestEffectiveRange:inRange:</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>attributesAtIndex:</b> (unsigned int)index <b>longestEffectiveRange:</b> (NSRange*)aRange <b>inRange:</b> (NSRange)rangeLimit;<br>
|
||||
- (NSDictionary*) <b>attributesAtIndex:</b> (unsigned int)index <b>longestEffectiveRange:</b> (NSRange*)aRange <b>inRange:</b> (NSRange)rangeLimit;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">initWithAttributedString:</a></h3>
|
||||
- (id) <b>initWithAttributedString:</b> (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*)attributedString;<br>
|
||||
- (id) <b>initWithAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">initWithString:</a></h3>
|
||||
- (id) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (id) <b>initWithString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">initWithString:attributes:</a></h3>
|
||||
- (id) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString <b>attributes:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)attributes;<br>
|
||||
- (id) <b>initWithString:</b> (NSString*)aString <b>attributes:</b> (NSDictionary*)attributes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">isEqualToAttributedString:</a></h3>
|
||||
- (BOOL) <b>isEqualToAttributedString:</b> (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*)otherString;<br>
|
||||
- (BOOL) <b>isEqualToAttributedString:</b> (NSAttributedString*)otherString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -91,7 +91,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-10">string</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>string</b>;<br>
|
||||
- (NSString*) <b>string</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSAutoreleasePool</a></h2>
|
||||
<h2><a name ="NSAutoreleasePool">NSAutoreleasePool</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSAutoreleasePool.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSBundle</a></h2>
|
||||
<h2><a name ="NSBundle">NSBundle</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSBundle.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -47,53 +47,53 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">allBundles</a></h3>
|
||||
+ (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>allBundles</b>;<br>
|
||||
+ (NSArray*) <b>allBundles</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">allFrameworks</a></h3>
|
||||
+ (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>allFrameworks</b>;<br>
|
||||
+ (NSArray*) <b>allFrameworks</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">bundleForClass:</a></h3>
|
||||
+ (<A HREF="NSBundle.html#NSBundle">NSBundle</A>*) <b>bundleForClass:</b> (Class)aClass;<br>
|
||||
+ (NSBundle*) <b>bundleForClass:</b> (Class)aClass;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">bundleWithPath:</a></h3>
|
||||
+ (<A HREF="NSBundle.html#NSBundle">NSBundle</A>*) <b>bundleWithPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
+ (NSBundle*) <b>bundleWithPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">mainBundle</a></h3>
|
||||
+ (<A HREF="NSBundle.html#NSBundle">NSBundle</A>*) <b>mainBundle</b>;<br>
|
||||
+ (NSBundle*) <b>mainBundle</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">pathForResource:ofType:inDirectory:</a></h3>
|
||||
+ (<A HREF="NSString.html#NSString">NSString</A>*) <b>pathForResource:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>ofType:</b> (<A HREF="NSString.html#NSString">NSString</A>*)extension <b>inDirectory:</b> (<A HREF="NSString.html#NSString">NSString</A>*)bundlePath;<br>
|
||||
+ (NSString*) <b>pathForResource:</b> (NSString*)name <b>ofType:</b> (NSString*)extension <b>inDirectory:</b> (NSString*)bundlePath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-6">bundlePath</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>bundlePath</b>;<br>
|
||||
- (NSString*) <b>bundlePath</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">classNamed:</a></h3>
|
||||
- (Class) <b>classNamed:</b> (<A HREF="NSString.html#NSString">NSString</A>*)className;<br>
|
||||
- (Class) <b>classNamed:</b> (NSString*)className;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">infoDictionary</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>infoDictionary</b>;<br>
|
||||
- (NSDictionary*) <b>infoDictionary</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">initWithPath:</a></h3>
|
||||
- (id) <b>initWithPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)fullPath;<br>
|
||||
- (id) <b>initWithPath:</b> (NSString*)fullPath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -103,22 +103,22 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-11">localizedStringForKey:value:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>localizedStringForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)key <b>value:</b> (<A HREF="NSString.html#NSString">NSString</A>*)value;<br>
|
||||
- (NSString*) <b>localizedStringForKey:</b> (NSString*)key <b>value:</b> (NSString*)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">pathForResource:ofType:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>pathForResource:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>ofType:</b> (<A HREF="NSString.html#NSString">NSString</A>*)extension;<br>
|
||||
- (NSString*) <b>pathForResource:</b> (NSString*)name <b>ofType:</b> (NSString*)extension;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">pathForResource:ofType:inDirectory:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>pathForResource:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>ofType:</b> (<A HREF="NSString.html#NSString">NSString</A>*)extension <b>inDirectory:</b> (<A HREF="NSString.html#NSString">NSString</A>*)bundlePath;<br>
|
||||
- (NSString*) <b>pathForResource:</b> (NSString*)name <b>ofType:</b> (NSString*)extension <b>inDirectory:</b> (NSString*)bundlePath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">pathsForResourcesOfType:inDirectory:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>pathsForResourcesOfType:</b> (<A HREF="NSString.html#NSString">NSString</A>*)extension <b>inDirectory:</b> (<A HREF="NSString.html#NSString">NSString</A>*)bundlePath;<br>
|
||||
- (NSArray*) <b>pathsForResourcesOfType:</b> (NSString*)extension <b>inDirectory:</b> (NSString*)bundlePath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -128,7 +128,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-16">resourcePath</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>resourcePath</b>;<br>
|
||||
- (NSString*) <b>resourcePath</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSCalendarDate</a></h2>
|
||||
<h2><a name ="NSCalendarDate">NSCalendarDate</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDate.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSDate.html#NSDate">NSDate</A></p>
|
||||
<p><b>Inherits from: </b> NSDate</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -62,28 +62,28 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-1">dateWithString:calendarFormat:</a></h3>
|
||||
+ (id) <b>dateWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)description <b>calendarFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format;<br>
|
||||
+ (id) <b>dateWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">dateWithString:calendarFormat:</a></h3>
|
||||
+ (id) <b>dateWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)description <b>calendarFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format;<br>
|
||||
+ (id) <b>dateWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">dateWithYear:month:day:hour:minute:second:timeZone:</a></h3>
|
||||
+ (id) <b>dateWithYear:</b> (int)year <b>month:</b> (unsigned int)month <b>day:</b> (unsigned int)day <b>hour:</b> (unsigned int)hour <b>minute:</b> (unsigned int)minute <b>second:</b> (unsigned int)second <b>timeZone:</b> (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*)aTimeZone;<br>
|
||||
+ (id) <b>dateWithYear:</b> (int)year <b>month:</b> (unsigned int)month <b>day:</b> (unsigned int)day <b>hour:</b> (unsigned int)hour <b>minute:</b> (unsigned int)minute <b>second:</b> (unsigned int)second <b>timeZone:</b> (NSTimeZone*)aTimeZone;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-4">calendarFormat</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>calendarFormat</b>;<br>
|
||||
- (NSString*) <b>calendarFormat</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">dateByAddingYears:months:days:hours:minutes:seconds:</a></h3>
|
||||
- (<A HREF="NSCalendarDate.html#NSCalendarDate">NSCalendarDate</A>*) <b>dateByAddingYears:</b> (int)year <b>months:</b> (int)month <b>days:</b> (int)day <b>hours:</b> (int)hour <b>minutes:</b> (int)minute <b>seconds:</b> (int)second;<br>
|
||||
- (NSCalendarDate*) <b>dateByAddingYears:</b> (int)year <b>months:</b> (int)month <b>days:</b> (int)day <b>hours:</b> (int)hour <b>minutes:</b> (int)minute <b>seconds:</b> (int)second;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -108,22 +108,22 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-10">description</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
- (NSString*) <b>description</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">descriptionWithCalendarFormat:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithCalendarFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format;<br>
|
||||
- (NSString*) <b>descriptionWithCalendarFormat:</b> (NSString*)format;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">descriptionWithCalendarFormat:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithCalendarFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format;<br>
|
||||
- (NSString*) <b>descriptionWithCalendarFormat:</b> (NSString*)format;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)locale;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -133,22 +133,22 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-15">initWithString:</a></h3>
|
||||
- (id) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)description;<br>
|
||||
- (id) <b>initWithString:</b> (NSString*)description;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-16">initWithString:calendarFormat:</a></h3>
|
||||
- (id) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)description <b>calendarFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format;<br>
|
||||
- (id) <b>initWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">initWithString:calendarFormat:</a></h3>
|
||||
- (id) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)description <b>calendarFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format;<br>
|
||||
- (id) <b>initWithString:</b> (NSString*)description <b>calendarFormat:</b> (NSString*)format;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">initWithYear:month:day:hour:minute:second:timeZone:</a></h3>
|
||||
- (id) <b>initWithYear:</b> (int)year <b>month:</b> (unsigned int)month <b>day:</b> (unsigned int)day <b>hour:</b> (unsigned int)hour <b>minute:</b> (unsigned int)minute <b>second:</b> (unsigned int)second <b>timeZone:</b> (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*)aTimeZone;<br>
|
||||
- (id) <b>initWithYear:</b> (int)year <b>month:</b> (unsigned int)month <b>day:</b> (unsigned int)day <b>hour:</b> (unsigned int)hour <b>minute:</b> (unsigned int)minute <b>second:</b> (unsigned int)second <b>timeZone:</b> (NSTimeZone*)aTimeZone;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -168,17 +168,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-22">setCalendarFormat:</a></h3>
|
||||
- (void) <b>setCalendarFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format;<br>
|
||||
- (void) <b>setCalendarFormat:</b> (NSString*)format;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-23">setTimeZone:</a></h3>
|
||||
- (void) <b>setTimeZone:</b> (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*)aTimeZone;<br>
|
||||
- (void) <b>setTimeZone:</b> (NSTimeZone*)aTimeZone;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-24">timeZone</a></h3>
|
||||
- (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*) <b>timeZone</b>;<br>
|
||||
- (NSTimeZone*) <b>timeZone</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -188,7 +188,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-26">years:months:days:hours:minutes:seconds:sinceDate:</a></h3>
|
||||
- (void) <b>years:</b> (int*)yearsPointer <b>months:</b> (int*)monthsPointer <b>days:</b> (int*)daysPointer <b>hours:</b> (int*)hoursPointer <b>minutes:</b> (int*)minutesPointer <b>seconds:</b> (int*)secondsPointer <b>sinceDate:</b> (<A HREF="NSCalendarDate.html#NSCalendarDate">NSCalendarDate</A>*)date;<br>
|
||||
- (void) <b>years:</b> (int*)yearsPointer <b>months:</b> (int*)monthsPointer <b>days:</b> (int*)daysPointer <b>hours:</b> (int*)hoursPointer <b>minutes:</b> (int*)minutesPointer <b>seconds:</b> (int*)secondsPointer <b>sinceDate:</b> (NSCalendarDate*)date;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSCharacterSet</a></h2>
|
||||
<h2><a name ="NSCharacterSet">NSCharacterSet</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSCharacterSet.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -49,82 +49,82 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">alphanumericCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>alphanumericCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>alphanumericCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">characterSetWithBitmapRepresentation:</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>characterSetWithBitmapRepresentation:</b> (NSData*)data;<br>
|
||||
+ (NSCharacterSet*) <b>characterSetWithBitmapRepresentation:</b> (NSData*)data;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">characterSetWithCharactersInString:</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>characterSetWithCharactersInString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
+ (NSCharacterSet*) <b>characterSetWithCharactersInString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">characterSetWithContentsOfFile:</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>characterSetWithContentsOfFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
+ (NSCharacterSet*) <b>characterSetWithContentsOfFile:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">characterSetWithRange:</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>characterSetWithRange:</b> (NSRange)aRange;<br>
|
||||
+ (NSCharacterSet*) <b>characterSetWithRange:</b> (NSRange)aRange;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">controlCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>controlCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>controlCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">decimalDigitCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>decimalDigitCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>decimalDigitCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">decomposableCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>decomposableCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>decomposableCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">illegalCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>illegalCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>illegalCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">letterCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>letterCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>letterCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">lowercaseLetterCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>lowercaseLetterCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>lowercaseLetterCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">nonBaseCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>nonBaseCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>nonBaseCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">punctuationCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>punctuationCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>punctuationCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">uppercaseLetterCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>uppercaseLetterCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>uppercaseLetterCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">whitespaceAndNewlineCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>whitespaceAndNewlineCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>whitespaceAndNewlineCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-15">whitespaceCharacterSet</a></h3>
|
||||
+ (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>whitespaceCharacterSet</b>;<br>
|
||||
+ (NSCharacterSet*) <b>whitespaceCharacterSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -140,7 +140,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-18">invertedSet</a></h3>
|
||||
- (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>invertedSet</b>;<br>
|
||||
- (NSCharacterSet*) <b>invertedSet</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSCoder</a></h2>
|
||||
<h2><a name ="NSCoder">NSCoder</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSCoder.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -193,7 +193,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-27">versionForClassName:</a></h3>
|
||||
- (unsigned int) <b>versionForClassName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)className;<br>
|
||||
- (unsigned int) <b>versionForClassName:</b> (NSString*)className;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSConditionLock</a></h2>
|
||||
<h2><a name ="NSConditionLock">NSConditionLock</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSLock.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSLocking
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -48,7 +48,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">lockBeforeDate:</a></h3>
|
||||
- (BOOL) <b>lockBeforeDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)limit;<br>
|
||||
- (BOOL) <b>lockBeforeDate:</b> (NSDate*)limit;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -58,7 +58,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-4">lockWhenCondition:beforeDate:</a></h3>
|
||||
- (BOOL) <b>lockWhenCondition:</b> (int)condition <b>beforeDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)limit;<br>
|
||||
- (BOOL) <b>lockWhenCondition:</b> (int)condition <b>beforeDate:</b> (NSDate*)limit;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSConnection</a></h2>
|
||||
<h2><a name ="NSConnection">NSConnection</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSConnection.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -75,7 +75,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">allConnections</a></h3>
|
||||
+ (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>allConnections</b>;<br>
|
||||
+ (NSArray*) <b>allConnections</b>;<br>
|
||||
|
||||
Returns an array containing all the NSConnection objects known to
|
||||
the system. These connections will be valid at the time that the
|
||||
|
@ -84,7 +84,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-1">connectionWithReceivePort:</a></h3>
|
||||
+ (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*) <b>connectionWithReceivePort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)receivePort;<br>
|
||||
+ (NSConnection*) <b>connectionWithReceivePort:</b> (NSPort*)receivePort;<br>
|
||||
|
||||
Returns a connection created using
|
||||
<a href ="#initWithReceivePort:sendPort:">
|
||||
|
@ -92,7 +92,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">connectionWithRegisteredName:host:</a></h3>
|
||||
+ (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*) <b>connectionWithRegisteredName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>host:</b> (<A HREF="NSString.html#NSString">NSString</A>*)hostName;<br>
|
||||
+ (NSConnection*) <b>connectionWithRegisteredName:</b> (NSString*)name <b>host:</b> (NSString*)hostName;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -112,7 +112,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="connectionWithRegisteredName:host:usingNameServer:">connectionWithRegisteredName:host:usingNameServer:</a></h3>
|
||||
+ (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*) <b>connectionWithRegisteredName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>host:</b> (<A HREF="NSString.html#NSString">NSString</A>*)host <b>usingNameServer:</b> (<A HREF="NSPortNameServer.html#NSPortNameServer">NSPortNameServer</A>*)server;<br>
|
||||
+ (NSConnection*) <b>connectionWithRegisteredName:</b> (NSString*)name <b>host:</b> (NSString*)host <b>usingNameServer:</b> (NSPortNameServer*)server;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -159,7 +159,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-4">defaultConnection</a></h3>
|
||||
+ (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*) <b>defaultConnection</b>;<br>
|
||||
+ (NSConnection*) <b>defaultConnection</b>;<br>
|
||||
|
||||
Returns the default NSConnection for the current thread.
|
||||
<br>
|
||||
|
@ -171,7 +171,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">newRegisteringAtName:withRootObject:</a></h3>
|
||||
+ (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*) <b>newRegisteringAtName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>withRootObject:</b> (id)anObject;<br>
|
||||
+ (NSConnection*) <b>newRegisteringAtName:</b> (NSString*)name <b>withRootObject:</b> (id)anObject;<br>
|
||||
Standards: GNUstep NotMacOS-X NotOpenStep<br>
|
||||
|
||||
This used to be the preferred mechanism for creating a GNUstep
|
||||
|
@ -197,7 +197,7 @@ Standards: GNUstep NotMacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-7">rootProxyForConnectionWithRegisteredName:host:</a></h3>
|
||||
+ (<A HREF="NSDistantObject.html#NSDistantObject">NSDistantObject</A>*) <b>rootProxyForConnectionWithRegisteredName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>host:</b> (<A HREF="NSString.html#NSString">NSString</A>*)host;<br>
|
||||
+ (NSDistantObject*) <b>rootProxyForConnectionWithRegisteredName:</b> (NSString*)name <b>host:</b> (NSString*)host;<br>
|
||||
|
||||
This method calls <a href ="#rootProxyForConnectionWithRegisteredName:host:usingNameServer:">
|
||||
rootProxyForConnectionWithRegisteredName:host:usingNameServer:</a>
|
||||
|
@ -206,7 +206,7 @@ Standards: GNUstep NotMacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="rootProxyForConnectionWithRegisteredName:host:usingNameServer:">rootProxyForConnectionWithRegisteredName:host:usingNameServer:</a></h3>
|
||||
+ (<A HREF="NSDistantObject.html#NSDistantObject">NSDistantObject</A>*) <b>rootProxyForConnectionWithRegisteredName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>host:</b> (<A HREF="NSString.html#NSString">NSString</A>*)host <b>usingNameServer:</b> (<A HREF="NSPortNameServer.html#NSPortNameServer">NSPortNameServer</A>*)server;<br>
|
||||
+ (NSDistantObject*) <b>rootProxyForConnectionWithRegisteredName:</b> (NSString*)name <b>host:</b> (NSString*)host <b>usingNameServer:</b> (NSPortNameServer*)server;<br>
|
||||
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||
|
||||
This method calls
|
||||
|
@ -222,14 +222,14 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-8">addRequestMode:</a></h3>
|
||||
- (void) <b>addRequestMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode;<br>
|
||||
- (void) <b>addRequestMode:</b> (NSString*)mode;<br>
|
||||
|
||||
Adds <em>mode</em> to the run loop modes that the NSConnection
|
||||
will listen to for incoming messages.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">addRunLoop:</a></h3>
|
||||
- (void) <b>addRunLoop:</b> (<A HREF="NSRunLoop.html#NSRunLoop">NSRunLoop</A>*)loop;<br>
|
||||
- (void) <b>addRunLoop:</b> (NSRunLoop*)loop;<br>
|
||||
|
||||
Adds <em>loop</em> to the set of run loops that the NSConnection
|
||||
will listen to for incoming messages.
|
||||
|
@ -261,7 +261,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
<hr>
|
||||
<h3><a name ="initWithReceivePort:sendPort:">initWithReceivePort:sendPort:</a></h3>
|
||||
<b>This is the designated initialiser </b><br>
|
||||
- (id) <b>initWithReceivePort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)recv <b>sendPort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)send;<br>
|
||||
- (id) <b>initWithReceivePort:</b> (NSPort*)recv <b>sendPort:</b> (NSPort*)send;<br>
|
||||
|
||||
Initialises an NSConnection with <em>recv</em> and <em>send</em>.
|
||||
<br>
|
||||
|
@ -329,7 +329,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-15">localObjects</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>localObjects</b>;<br>
|
||||
- (NSArray*) <b>localObjects</b>;<br>
|
||||
|
||||
Returns an array of all the local proxies to objects that
|
||||
are retained by the remote connection.
|
||||
|
@ -344,14 +344,14 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-17">receivePort</a></h3>
|
||||
- (<A HREF="NSPort.html#NSPort">NSPort</A>*) <b>receivePort</b>;<br>
|
||||
- (NSPort*) <b>receivePort</b>;<br>
|
||||
|
||||
Returns the NSPort object on which incoming messages are
|
||||
recieved.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">registerName:</a></h3>
|
||||
- (BOOL) <b>registerName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name;<br>
|
||||
- (BOOL) <b>registerName:</b> (NSString*)name;<br>
|
||||
|
||||
Simply invokes <a href ="#registerName:usingNameServer:">
|
||||
registerName:usingNameServer:</a> passing it the default
|
||||
|
@ -359,7 +359,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-19">registerName:withNameServer:</a></h3>
|
||||
- (BOOL) <b>registerName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>withNameServer:</b> (<A HREF="NSPortNameServer.html#NSPortNameServer">NSPortNameServer</A>*)server;<br>
|
||||
- (BOOL) <b>registerName:</b> (NSString*)name <b>withNameServer:</b> (NSPortNameServer*)server;<br>
|
||||
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||
|
||||
Registers the recieve port of the NSConnection as <em>name</em> and
|
||||
|
@ -375,21 +375,21 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-20">remoteObjects</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>remoteObjects</b>;<br>
|
||||
- (NSArray*) <b>remoteObjects</b>;<br>
|
||||
|
||||
Returns an array of proxies to all the remote objects known to
|
||||
the NSConnection.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-21">removeRequestMode:</a></h3>
|
||||
- (void) <b>removeRequestMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode;<br>
|
||||
- (void) <b>removeRequestMode:</b> (NSString*)mode;<br>
|
||||
|
||||
Removes <em>mode</em> from the run loop modes used to recieve
|
||||
incoming messages.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-22">removeRunLoop:</a></h3>
|
||||
- (void) <b>removeRunLoop:</b> (<A HREF="NSRunLoop.html#NSRunLoop">NSRunLoop</A>*)loop;<br>
|
||||
- (void) <b>removeRunLoop:</b> (NSRunLoop*)loop;<br>
|
||||
|
||||
Removes <em>loop</em> from the run loops used to recieve
|
||||
incoming messages.
|
||||
|
@ -403,7 +403,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-24">requestModes</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>requestModes</b>;<br>
|
||||
- (NSArray*) <b>requestModes</b>;<br>
|
||||
|
||||
Returns an array of all the run loop modes that the NSConnection
|
||||
uses when waiting for an incoming request.
|
||||
|
@ -427,7 +427,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-27">rootProxy</a></h3>
|
||||
- (<A HREF="NSDistantObject.html#NSDistantObject">NSDistantObject</A>*) <b>rootProxy</b>;<br>
|
||||
- (NSDistantObject*) <b>rootProxy</b>;<br>
|
||||
|
||||
Returns the proxy for the root object of the remote NSConnection.
|
||||
|
||||
|
@ -441,7 +441,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-29">sendPort</a></h3>
|
||||
- (<A HREF="NSPort.html#NSPort">NSPort</A>*) <b>sendPort</b>;<br>
|
||||
- (NSPort*) <b>sendPort</b>;<br>
|
||||
|
||||
Returns the port on which the NSConnection sends messages.
|
||||
|
||||
|
@ -490,7 +490,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-35">statistics</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>statistics</b>;<br>
|
||||
- (NSDictionary*) <b>statistics</b>;<br>
|
||||
|
||||
Returns an object containing various statistics for the
|
||||
NSConnection.
|
||||
|
@ -526,7 +526,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-36">authenticateComponents:withData:</a></h3>
|
||||
- (BOOL) <b>authenticateComponents:</b> (<A HREF="NSMutableArray.html#NSMutableArray">NSMutableArray</A>*)components <b>withData:</b> (NSData*)authentication;<br>
|
||||
- (BOOL) <b>authenticateComponents:</b> (NSMutableArray*)components <b>withData:</b> (NSData*)authentication;<br>
|
||||
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||
|
||||
<p>
|
||||
|
@ -561,7 +561,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-37">authenticationDataForComponents:</a></h3>
|
||||
- (NSData*) <b>authenticationDataForComponents:</b> (<A HREF="NSMutableArray.html#NSMutableArray">NSMutableArray</A>*)components;<br>
|
||||
- (NSData*) <b>authenticationDataForComponents:</b> (NSMutableArray*)components;<br>
|
||||
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||
|
||||
<p>
|
||||
|
@ -596,7 +596,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="connection:shouldMakeNewConnection">connection:shouldMakeNewConnection:</a></h3>
|
||||
- (BOOL) <b>connection:</b> (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*)parentConnection <b>shouldMakeNewConnection:</b> (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*)newConnnection;<br>
|
||||
- (BOOL) <b>connection:</b> (NSConnection*)parentConnection <b>shouldMakeNewConnection:</b> (NSConnection*)newConnnection;<br>
|
||||
Standards: GNUstep MacOS-X NotOpenStep<br>
|
||||
|
||||
<p>
|
||||
|
@ -619,7 +619,7 @@ Standards: GNUstep MacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-38">makeNewConnection:</a></h3>
|
||||
- (BOOL) <b>makeNewConnection:</b> (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*)newConnection;<br>
|
||||
- (BOOL) <b>makeNewConnection:</b> (NSConnection*)newConnection;<br>
|
||||
Standards: OpenStep<br>
|
||||
|
||||
<p>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSCountedSet</a></h2>
|
||||
<h2><a name ="NSCountedSet">NSCountedSet</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSSet.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSMutableSet.html#NSMutableSet">NSMutableSet</A></p>
|
||||
<p><b>Inherits from: </b> NSMutableSet</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -63,7 +63,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-1">allObjects</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>allObjects</b>;<br>
|
||||
- (NSArray*) <b>allObjects</b>;<br>
|
||||
|
||||
Returns an array containing all the objects stored in the set.
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-4">initWithArray:</a></h3>
|
||||
- (id) <b>initWithArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)anArray;<br>
|
||||
- (id) <b>initWithArray:</b> (NSArray*)anArray;<br>
|
||||
|
||||
Initialises a newly allocated set by adding all the objects
|
||||
in the supplied array to the set. Each object is added to
|
||||
|
@ -98,14 +98,14 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">initWithSet:</a></h3>
|
||||
- (id) <b>initWithSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)aSet;<br>
|
||||
- (id) <b>initWithSet:</b> (NSSet*)aSet;<br>
|
||||
|
||||
Initialises a newly allocated set by adding all the objects
|
||||
in the supplied set.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">objectEnumerator</a></h3>
|
||||
- (<A HREF="NSEnumerator.html#NSEnumerator">NSEnumerator</A>*) <b>objectEnumerator</b>;<br>
|
||||
- (NSEnumerator*) <b>objectEnumerator</b>;<br>
|
||||
|
||||
Returns an NSEnumerator object able to step through all the
|
||||
objects in the set.
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDate</a></h2>
|
||||
<h2><a name ="NSDate">NSDate</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDate.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -66,7 +66,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">dateWithString:</a></h3>
|
||||
+ (id) <b>dateWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
+ (id) <b>dateWithString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -102,32 +102,32 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-9">compare:</a></h3>
|
||||
- (NSComparisonResult) <b>compare:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)anotherDate;<br>
|
||||
- (NSComparisonResult) <b>compare:</b> (NSDate*)anotherDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">dateWithCalendarFormat:</a></h3>
|
||||
- (<A HREF="NSCalendarDate.html#NSCalendarDate">NSCalendarDate</A>*) <b>dateWithCalendarFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)formatString;<br>
|
||||
- (NSCalendarDate*) <b>dateWithCalendarFormat:</b> (NSString*)formatString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">description</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
- (NSString*) <b>description</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">descriptionWithCalendarFormat:timeZone:locale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithCalendarFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)formatString <b>timeZone:</b> (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*)aTimeZone <b>locale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)localeDictionary;<br>
|
||||
- (NSString*) <b>descriptionWithCalendarFormat:</b> (NSString*)formatString <b>timeZone:</b> (NSTimeZone*)aTimeZone <b>locale:</b> (NSDictionary*)localeDictionary;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)localeDictionary;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)localeDictionary;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">earlierDate:</a></h3>
|
||||
- (<A HREF="NSDate.html#NSDate">NSDate</A>*) <b>earlierDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)anotherDate;<br>
|
||||
- (NSDate*) <b>earlierDate:</b> (NSDate*)anotherDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -137,12 +137,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-16">initWithString:</a></h3>
|
||||
- (id) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)description;<br>
|
||||
- (id) <b>initWithString:</b> (NSString*)description;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">initWithTimeInterval:sinceDate:</a></h3>
|
||||
- (id) <b>initWithTimeInterval:</b> (NSTimeInterval)seconds <b>sinceDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)anotherDate;<br>
|
||||
- (id) <b>initWithTimeInterval:</b> (NSTimeInterval)seconds <b>sinceDate:</b> (NSDate*)anotherDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -157,17 +157,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-20">isEqualToDate:</a></h3>
|
||||
- (BOOL) <b>isEqualToDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)anotherDate;<br>
|
||||
- (BOOL) <b>isEqualToDate:</b> (NSDate*)anotherDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-21">laterDate:</a></h3>
|
||||
- (<A HREF="NSDate.html#NSDate">NSDate</A>*) <b>laterDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)anotherDate;<br>
|
||||
- (NSDate*) <b>laterDate:</b> (NSDate*)anotherDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-22">timeIntervalSinceDate:</a></h3>
|
||||
- (NSTimeInterval) <b>timeIntervalSinceDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)anotherDate;<br>
|
||||
- (NSTimeInterval) <b>timeIntervalSinceDate:</b> (NSDate*)anotherDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDateFormatter</a></h2>
|
||||
<h2><a name ="NSDateFormatter">NSDateFormatter</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDateFormatter.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSFormatter.html#NSFormatter">NSFormatter</A></p>
|
||||
<p><b>Inherits from: </b> NSFormatter</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -38,12 +38,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-1">dateFormat</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>dateFormat</b>;<br>
|
||||
- (NSString*) <b>dateFormat</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">initWithDateFormat:allowNaturalLanguage:</a></h3>
|
||||
- (id) <b>initWithDateFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format <b>allowNaturalLanguage:</b> (BOOL)flag;<br>
|
||||
- (id) <b>initWithDateFormat:</b> (NSString*)format <b>allowNaturalLanguage:</b> (BOOL)flag;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDecimalNumber</a></h2>
|
||||
<h2><a name ="NSDecimalNumber">NSDecimalNumber</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDecimalNumber.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSNumber.html#NSNumber">NSNumber</A></p>
|
||||
<p><b>Inherits from: </b> NSNumber</p>
|
||||
<hr>
|
||||
|
||||
|
||||
|
@ -61,22 +61,22 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">decimalNumberWithDecimal:</a></h3>
|
||||
+ (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberWithDecimal:</b> (NSDecimal)decimal;<br>
|
||||
+ (NSDecimalNumber*) <b>decimalNumberWithDecimal:</b> (NSDecimal)decimal;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">decimalNumberWithMantissa:exponent:isNegative:</a></h3>
|
||||
+ (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberWithMantissa:</b> (unsigned long long)mantissa <b>exponent:</b> (short)exponent <b>isNegative:</b> (BOOL)isNegative;<br>
|
||||
+ (NSDecimalNumber*) <b>decimalNumberWithMantissa:</b> (unsigned long long)mantissa <b>exponent:</b> (short)exponent <b>isNegative:</b> (BOOL)isNegative;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">decimalNumberWithString:</a></h3>
|
||||
+ (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)numericString;<br>
|
||||
+ (NSDecimalNumber*) <b>decimalNumberWithString:</b> (NSString*)numericString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">decimalNumberWithString:</a></h3>
|
||||
+ (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)numericString;<br>
|
||||
+ (NSDecimalNumber*) <b>decimalNumberWithString:</b> (NSString*)numericString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -86,22 +86,22 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">maximumDecimalNumber</a></h3>
|
||||
+ (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>maximumDecimalNumber</b>;<br>
|
||||
+ (NSDecimalNumber*) <b>maximumDecimalNumber</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">minimumDecimalNumber</a></h3>
|
||||
+ (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>minimumDecimalNumber</b>;<br>
|
||||
+ (NSDecimalNumber*) <b>minimumDecimalNumber</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">notANumber</a></h3>
|
||||
+ (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>notANumber</b>;<br>
|
||||
+ (NSDecimalNumber*) <b>notANumber</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">one</a></h3>
|
||||
+ (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>one</b>;<br>
|
||||
+ (NSDecimalNumber*) <b>one</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -111,78 +111,78 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-10">zero</a></h3>
|
||||
+ (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>zero</b>;<br>
|
||||
+ (NSDecimalNumber*) <b>zero</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-11">compare:</a></h3>
|
||||
- (NSComparisonResult) <b>compare:</b> (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*)decimalNumber;<br>
|
||||
- (NSComparisonResult) <b>compare:</b> (NSNumber*)decimalNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">decimalNumberByAdding:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByAdding:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)decimalNumber;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByAdding:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">decimalNumberByAdding:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByAdding:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)decimalNumber;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByAdding:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">decimalNumberByDividingBy:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByDividingBy:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)decimalNumber;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByDividingBy:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-15">decimalNumberByDividingBy:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByDividingBy:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)decimalNumber;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByDividingBy:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-16">decimalNumberByMultiplyingBy:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByMultiplyingBy:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)decimalNumber;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingBy:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">decimalNumberByMultiplyingBy:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByMultiplyingBy:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)decimalNumber;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingBy:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">decimalNumberByMultiplyingByPowerOf10:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByMultiplyingByPowerOf10:</b> (short)power;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingByPowerOf10:</b> (short)power;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-19">decimalNumberByMultiplyingByPowerOf10:withBehavior:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByMultiplyingByPowerOf10:</b> (short)power <b>withBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByMultiplyingByPowerOf10:</b> (short)power <b>withBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-20">decimalNumberByRaisingToPower:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByRaisingToPower:</b> (unsigned int)power;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByRaisingToPower:</b> (unsigned int)power;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-21">decimalNumberByRaisingToPower:withBehavior:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByRaisingToPower:</b> (unsigned int)power <b>withBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByRaisingToPower:</b> (unsigned int)power <b>withBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-22">decimalNumberByRoundingAccordingToBehavior:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberByRoundingAccordingToBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberByRoundingAccordingToBehavior:</b> (id<NSDecimalNumberBehaviors>)behavior;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-23">decimalNumberBySubtracting:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberBySubtracting:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)decimalNumber;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberBySubtracting:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-24">decimalNumberBySubtracting:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>decimalNumberBySubtracting:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)decimalNumber;<br>
|
||||
- (NSDecimalNumber*) <b>decimalNumberBySubtracting:</b> (NSDecimalNumber*)decimalNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -192,7 +192,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-26">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)locale;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -202,22 +202,22 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-28">initWithDecimal:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>initWithDecimal:</b> (NSDecimal)decimal;<br>
|
||||
- (NSDecimalNumber*) <b>initWithDecimal:</b> (NSDecimal)decimal;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-29">initWithMantissa:exponent:isNegative:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>initWithMantissa:</b> (unsigned long long)mantissa <b>exponent:</b> (short)exponent <b>isNegative:</b> (BOOL)isNegative;<br>
|
||||
- (NSDecimalNumber*) <b>initWithMantissa:</b> (unsigned long long)mantissa <b>exponent:</b> (short)exponent <b>isNegative:</b> (BOOL)isNegative;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-30">initWithString:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)numericString;<br>
|
||||
- (NSDecimalNumber*) <b>initWithString:</b> (NSString*)numericString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-31">initWithString:</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)numericString;<br>
|
||||
- (NSDecimalNumber*) <b>initWithString:</b> (NSString*)numericString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDecimalNumberHandler</a></h2>
|
||||
<h2><a name ="NSDecimalNumberHandler">NSDecimalNumberHandler</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDecimalNumber.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSDecimalNumberBehaviors
|
||||
</p>
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDeserializer</a></h2>
|
||||
<h2><a name ="NSDeserializer">NSDeserializer</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSSerialization.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<h2><a name ="cont-0">NSDictionary</a></h2>
|
||||
<h2><a name ="NSDictionary">NSDictionary</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDictionary.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding, NSCopying, NSMutableCopying
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -80,14 +80,14 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">dictionaryWithContentsOfFile:</a></h3>
|
||||
+ (id) <b>dictionaryWithContentsOfFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
+ (id) <b>dictionaryWithContentsOfFile:</b> (NSString*)path;<br>
|
||||
|
||||
Returns a dictionary using the file located at path.
|
||||
The file must be a property list containing a dictionary as its root object.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">dictionaryWithDictionary:</a></h3>
|
||||
+ (id) <b>dictionaryWithDictionary:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)otherDictionary;<br>
|
||||
+ (id) <b>dictionaryWithDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||
|
||||
Returns a newly created dictionary with the keys and objects of otherDictionary.
|
||||
(The keys and objects are not copied.)
|
||||
|
@ -100,7 +100,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">dictionaryWithObjects:forKey:</a></h3>
|
||||
+ (id) <b>dictionaryWithObjects:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)objects <b>forKey:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)keys;<br>
|
||||
+ (id) <b>dictionaryWithObjects:</b> (NSArray*)objects <b>forKey:</b> (NSArray*)keys;<br>
|
||||
|
||||
Returns a dictionary created using the given objects and keys.
|
||||
The two arrays must have the same size.
|
||||
|
@ -124,19 +124,19 @@
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-8">allKeys</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>allKeys</b>;<br>
|
||||
- (NSArray*) <b>allKeys</b>;<br>
|
||||
|
||||
Returns an array containing all the dictionary's keys.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">allKeysForObject:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>allKeysForObject:</b> (id)anObject;<br>
|
||||
- (NSArray*) <b>allKeysForObject:</b> (id)anObject;<br>
|
||||
|
||||
Returns an array containing all the dictionary's keys that are associated with anObject.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">allValues</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>allValues</b>;<br>
|
||||
- (NSArray*) <b>allValues</b>;<br>
|
||||
|
||||
Returns an array containing all the dictionary's objects.
|
||||
|
||||
|
@ -148,37 +148,37 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-12">descriptionInStringsFileFormat</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionInStringsFileFormat</b>;<br>
|
||||
- (NSString*) <b>descriptionInStringsFileFormat</b>;<br>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)locale;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)locale;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-15">fileGroupOwnerAccountName</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>fileGroupOwnerAccountName</b>;<br>
|
||||
- (NSString*) <b>fileGroupOwnerAccountName</b>;<br>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-16">fileModificationDate</a></h3>
|
||||
- (<A HREF="NSDate.html#NSDate">NSDate</A>*) <b>fileModificationDate</b>;<br>
|
||||
- (NSDate*) <b>fileModificationDate</b>;<br>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">fileOwnerAccountName</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>fileOwnerAccountName</b>;<br>
|
||||
- (NSString*) <b>fileOwnerAccountName</b>;<br>
|
||||
|
||||
|
||||
|
||||
|
@ -208,25 +208,25 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-22">fileType</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>fileType</b>;<br>
|
||||
- (NSString*) <b>fileType</b>;<br>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-23">initWithContentsOfFile:</a></h3>
|
||||
- (id) <b>initWithContentsOfFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (id) <b>initWithContentsOfFile:</b> (NSString*)path;<br>
|
||||
|
||||
see dictionaryWithContentOfFile:
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-24">initWithDictionary:</a></h3>
|
||||
- (id) <b>initWithDictionary:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)otherDictionary;<br>
|
||||
- (id) <b>initWithDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||
|
||||
See dictionaryWithDictionary:
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-25">initWithObjects:</a></h3>
|
||||
- (id) <b>initWithObjects:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)objects;<br>
|
||||
- (id) <b>initWithObjects:</b> (NSArray*)objects;<br>
|
||||
|
||||
See <a href ="#dictionaryWithObjects:">dictionaryWithObjects:</a>
|
||||
|
||||
|
@ -244,25 +244,25 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-28">isEqualToDictionary:</a></h3>
|
||||
- (BOOL) <b>isEqualToDictionary:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)otherDictionary;<br>
|
||||
- (BOOL) <b>isEqualToDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-29">keyEnumerator</a></h3>
|
||||
- (<A HREF="NSEnumerator.html#NSEnumerator">NSEnumerator</A>*) <b>keyEnumerator</b>;<br>
|
||||
- (NSEnumerator*) <b>keyEnumerator</b>;<br>
|
||||
|
||||
Return an enumerator object containing all the keys of the dictionary.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-30"> keysSortedByValueUsingSelector:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b> keysSortedByValueUsingSelector:</b> (SEL)comparator;<br>
|
||||
- (NSArray*) <b> keysSortedByValueUsingSelector:</b> (SEL)comparator;<br>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-31">objectEnumerator</a></h3>
|
||||
- (<A HREF="NSEnumerator.html#NSEnumerator">NSEnumerator</A>*) <b>objectEnumerator</b>;<br>
|
||||
- (NSEnumerator*) <b>objectEnumerator</b>;<br>
|
||||
|
||||
Return an enumerator object containing all the keys of the dictionary.
|
||||
|
||||
|
@ -274,13 +274,13 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-33">objectsForKeys:notFoundMarker:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>objectsForKeys:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)keys <b>notFoundMarker:</b> (id)anObject;<br>
|
||||
- (NSArray*) <b>objectsForKeys:</b> (NSArray*)keys <b>notFoundMarker:</b> (id)anObject;<br>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-34">writeToFile:atomically:</a></h3>
|
||||
- (BOOL) <b>writeToFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>atomically:</b> (BOOL)flag;<br>
|
||||
- (BOOL) <b>writeToFile:</b> (NSString*)path <b>atomically:</b> (BOOL)flag;<br>
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDirectoryEnumerator</a></h2>
|
||||
<h2><a name ="NSDirectoryEnumerator">NSDirectoryEnumerator</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSFileManager.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSEnumerator.html#NSEnumerator">NSEnumerator</A></p>
|
||||
<p><b>Inherits from: </b> NSEnumerator</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -33,12 +33,12 @@
|
|||
</ul>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-0">directoryAttributes</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>directoryAttributes</b>;<br>
|
||||
- (NSDictionary*) <b>directoryAttributes</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">fileAttributes</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>fileAttributes</b>;<br>
|
||||
- (NSDictionary*) <b>fileAttributes</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDistantObject</a></h2>
|
||||
<h2><a name ="NSDistantObject">NSDistantObject</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDistantObject.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSProxy.html#NSProxy">NSProxy</A></p>
|
||||
<p><b>Inherits from: </b> NSProxy</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -36,23 +36,23 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">proxyWithLocal:connection:</a></h3>
|
||||
+ (<A HREF="NSDistantObject.html#NSDistantObject">NSDistantObject</A>*) <b>proxyWithLocal:</b> (id)anObject <b>connection:</b> (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*)aConnection;<br>
|
||||
+ (NSDistantObject*) <b>proxyWithLocal:</b> (id)anObject <b>connection:</b> (NSConnection*)aConnection;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">proxyWithTarget:</a></h3>
|
||||
+ (<A HREF="NSDistantObject.html#NSDistantObject">NSDistantObject</A>*) <b>proxyWithTarget:</b> (id)remoteObject;<br>
|
||||
+ (NSDistantObject*) <b>proxyWithTarget:</b> (id)remoteObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-2">connectionForProxy</a></h3>
|
||||
- (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*) <b>connectionForProxy</b>;<br>
|
||||
- (NSConnection*) <b>connectionForProxy</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">initWithLocal:connection:</a></h3>
|
||||
- (id) <b>initWithLocal:</b> (id)anObject <b>connection:</b> (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*)aConnection;<br>
|
||||
- (id) <b>initWithLocal:</b> (id)anObject <b>connection:</b> (NSConnection*)aConnection;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDistantObjectRequest</a></h2>
|
||||
<h2><a name ="NSDistantObjectRequest">NSDistantObjectRequest</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSConnection.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<hr>
|
||||
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
|||
</ul>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-0">connection</a></h3>
|
||||
- (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*) <b>connection</b>;<br>
|
||||
- (NSConnection*) <b>connection</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -42,12 +42,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">invocation</a></h3>
|
||||
- (<A HREF="NSInvocation.html#NSInvocation">NSInvocation</A>*) <b>invocation</b>;<br>
|
||||
- (NSInvocation*) <b>invocation</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">replyWithException:</a></h3>
|
||||
- (void) <b>replyWithException:</b> (<A HREF="NSException.html#NSException">NSException</A>*)exception;<br>
|
||||
- (void) <b>replyWithException:</b> (NSException*)exception;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDistributedLock</a></h2>
|
||||
<h2><a name ="NSDistributedLock">NSDistributedLock</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDistributedLock.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -36,7 +36,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">lockWithPath:</a></h3>
|
||||
+ (<A HREF="NSDistributedLock.html#NSDistributedLock">NSDistributedLock</A>*) <b>lockWithPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aPath;<br>
|
||||
+ (NSDistributedLock*) <b>lockWithPath:</b> (NSString*)aPath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -47,12 +47,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">initWithPath:</a></h3>
|
||||
- (<A HREF="NSDistributedLock.html#NSDistributedLock">NSDistributedLock</A>*) <b>initWithPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aPath;<br>
|
||||
- (NSDistributedLock*) <b>initWithPath:</b> (NSString*)aPath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">lockDate</a></h3>
|
||||
- (<A HREF="NSDate.html#NSDate">NSDate</A>*) <b>lockDate</b>;<br>
|
||||
- (NSDate*) <b>lockDate</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSDistributedNotificationCenter</a></h2>
|
||||
<h2><a name ="NSDistributedNotificationCenter">NSDistributedNotificationCenter</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDistributedNotificationCenter.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSNotificationCenter.html#NSNotificationCenter">NSNotificationCenter</A></p>
|
||||
<p><b>Inherits from: </b> NSNotificationCenter</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -41,48 +41,48 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">defaultCenter</a></h3>
|
||||
+ (<A HREF="NSNotificationCenter.html#NSNotificationCenter">NSNotificationCenter</A>*) <b>defaultCenter</b>;<br>
|
||||
+ (NSNotificationCenter*) <b>defaultCenter</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">notificationCenterForType:</a></h3>
|
||||
+ (<A HREF="NSDistributedNotificationCenter.html#NSDistributedNotificationCenter">NSDistributedNotificationCenter</A>*) <b>notificationCenterForType:</b> (<A HREF="NSString.html#NSString">NSString</A>*)type;<br>
|
||||
+ (NSDistributedNotificationCenter*) <b>notificationCenterForType:</b> (NSString*)type;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-2">addObserver:selector:name:</a></h3>
|
||||
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName;<br>
|
||||
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (NSString*)notificationName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">addObserver:selector:name:object:suspensionBehavior:</a></h3>
|
||||
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName <b>object:</b> (<A HREF="NSString.html#NSString">NSString</A>*)anObject <b>suspensionBehavior:</b> (NSNotificationSuspensionBehavior)suspensionBehavior;<br>
|
||||
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject <b>suspensionBehavior:</b> (NSNotificationSuspensionBehavior)suspensionBehavior;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">postNotification:</a></h3>
|
||||
- (void) <b>postNotification:</b> (<A HREF="NSNotification.html#NSNotification">NSNotification</A>*)notification;<br>
|
||||
- (void) <b>postNotification:</b> (NSNotification*)notification;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">postNotificationName:</a></h3>
|
||||
- (void) <b>postNotificationName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName;<br>
|
||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">postNotificationName:object:userInfo:</a></h3>
|
||||
- (void) <b>postNotificationName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName <b>object:</b> (<A HREF="NSString.html#NSString">NSString</A>*)anObject <b>userInfo:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)userInfo;<br>
|
||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">postNotificationName:object:userInfo:deliverImmediately:</a></h3>
|
||||
- (void) <b>postNotificationName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName <b>object:</b> (<A HREF="NSString.html#NSString">NSString</A>*)anObject <b>userInfo:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)userInfo <b>deliverImmediately:</b> (BOOL)deliverImmediately;<br>
|
||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject <b>userInfo:</b> (NSDictionary*)userInfo <b>deliverImmediately:</b> (BOOL)deliverImmediately;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">removeObserver:name:object:</a></h3>
|
||||
- (void) <b>removeObserver:</b> (id)anObserver <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName <b>object:</b> (<A HREF="NSString.html#NSString">NSString</A>*)anObject;<br>
|
||||
- (void) <b>removeObserver:</b> (id)anObserver <b>name:</b> (NSString*)notificationName <b>object:</b> (NSString*)anObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSEnumerator</a></h2>
|
||||
<h2><a name ="NSEnumerator">NSEnumerator</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSUtilities.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -32,7 +32,7 @@
|
|||
</ul>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-0">allObjects</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>allObjects</b>;<br>
|
||||
- (NSArray*) <b>allObjects</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSException</a></h2>
|
||||
<h2><a name ="NSException">NSException</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSException.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -39,33 +39,33 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">exceptionWithName:reason:userInfo:</a></h3>
|
||||
+ (<A HREF="NSException.html#NSException">NSException</A>*) <b>exceptionWithName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>reason:</b> (<A HREF="NSString.html#NSString">NSString</A>*)reason <b>userInfo:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)userInfo;<br>
|
||||
+ (NSException*) <b>exceptionWithName:</b> (NSString*)name <b>reason:</b> (NSString*)reason <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">raise:format:</a></h3>
|
||||
+ (void) <b>raise:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>format:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format, ...;<br>
|
||||
+ (void) <b>raise:</b> (NSString*)name <b>format:</b> (NSString*)format, ...;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">raise:format:arguments:</a></h3>
|
||||
+ (void) <b>raise:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>format:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format <b>arguments:</b> (va_list)argList;<br>
|
||||
+ (void) <b>raise:</b> (NSString*)name <b>format:</b> (NSString*)format <b>arguments:</b> (va_list)argList;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-3">description</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
- (NSString*) <b>description</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">initWithName:reason:userInfo:</a></h3>
|
||||
- (id) <b>initWithName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>reason:</b> (<A HREF="NSString.html#NSString">NSString</A>*)reason <b>userInfo:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)userInfo;<br>
|
||||
- (id) <b>initWithName:</b> (NSString*)name <b>reason:</b> (NSString*)reason <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">name</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>name</b>;<br>
|
||||
- (NSString*) <b>name</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -75,12 +75,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-7">reason</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>reason</b>;<br>
|
||||
- (NSString*) <b>reason</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">userInfo</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>userInfo</b>;<br>
|
||||
- (NSDictionary*) <b>userInfo</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSFileHandle</a></h2>
|
||||
<h2><a name ="NSFileHandle">NSFileHandle</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSFileHandle.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -56,7 +56,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-1">acceptConnectionInBackgroundAndNotifyForModes:</a></h3>
|
||||
- (void) <b>acceptConnectionInBackgroundAndNotifyForModes:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)modes;<br>
|
||||
- (void) <b>acceptConnectionInBackgroundAndNotifyForModes:</b> (NSArray*)modes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -106,7 +106,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-11">readInBackgroundAndNotifyForModes:</a></h3>
|
||||
- (void) <b>readInBackgroundAndNotifyForModes:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)modes;<br>
|
||||
- (void) <b>readInBackgroundAndNotifyForModes:</b> (NSArray*)modes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -116,7 +116,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-13">readToEndOfFileInBackgroundAndNotifyForModes:</a></h3>
|
||||
- (void) <b>readToEndOfFileInBackgroundAndNotifyForModes:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)modes;<br>
|
||||
- (void) <b>readToEndOfFileInBackgroundAndNotifyForModes:</b> (NSArray*)modes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -146,7 +146,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-19">waitForDataInBackgroundAndNotifyForModes:</a></h3>
|
||||
- (void) <b>waitForDataInBackgroundAndNotifyForModes:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)modes;<br>
|
||||
- (void) <b>waitForDataInBackgroundAndNotifyForModes:</b> (NSArray*)modes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSFileManager</a></h2>
|
||||
<h2><a name ="NSFileManager">NSFileManager</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSFileManager.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -59,148 +59,148 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">defaultManager</a></h3>
|
||||
+ (<A HREF="NSFileManager.html#NSFileManager">NSFileManager</A>*) <b>defaultManager</b>;<br>
|
||||
+ (NSFileManager*) <b>defaultManager</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">changeCurrentDirectoryPath:</a></h3>
|
||||
- (BOOL) <b>changeCurrentDirectoryPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (BOOL) <b>changeCurrentDirectoryPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">changeFileAttributes:</a></h3>
|
||||
- (BOOL) <b>changeFileAttributes:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)attributes;<br>
|
||||
- (BOOL) <b>changeFileAttributes:</b> (NSDictionary*)attributes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">contentsAtPath:</a></h3>
|
||||
- (NSData*) <b>contentsAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (NSData*) <b>contentsAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">contentsEqualAtPath:andPath:</a></h3>
|
||||
- (BOOL) <b>contentsEqualAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path1 <b>andPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path2;<br>
|
||||
- (BOOL) <b>contentsEqualAtPath:</b> (NSString*)path1 <b>andPath:</b> (NSString*)path2;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">copyPath:toPath:handler:</a></h3>
|
||||
- (BOOL) <b>copyPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)source <b>toPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)destination <b>handler:</b> handler;<br>
|
||||
- (BOOL) <b>copyPath:</b> (NSString*)source <b>toPath:</b> (NSString*)destination <b>handler:</b> handler;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">createDirectoryAtPath:attributes:</a></h3>
|
||||
- (BOOL) <b>createDirectoryAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>attributes:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)attributes;<br>
|
||||
- (BOOL) <b>createDirectoryAtPath:</b> (NSString*)path <b>attributes:</b> (NSDictionary*)attributes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">createFileAtPath:contents:attributes:</a></h3>
|
||||
- (BOOL) <b>createFileAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>contents:</b> (NSData*)contents <b>attributes:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)attributes;<br>
|
||||
- (BOOL) <b>createFileAtPath:</b> (NSString*)path <b>contents:</b> (NSData*)contents <b>attributes:</b> (NSDictionary*)attributes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">createSymbolicLinkAtPath:pathContent:</a></h3>
|
||||
- (BOOL) <b>createSymbolicLinkAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>pathContent:</b> (<A HREF="NSString.html#NSString">NSString</A>*)otherPath;<br>
|
||||
- (BOOL) <b>createSymbolicLinkAtPath:</b> (NSString*)path <b>pathContent:</b> (NSString*)otherPath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">currentDirectoryPath</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>currentDirectoryPath</b>;<br>
|
||||
- (NSString*) <b>currentDirectoryPath</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">directoryContentsAtPath:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>directoryContentsAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (NSArray*) <b>directoryContentsAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">enumeratorAtPath:</a></h3>
|
||||
- (<A HREF="NSDirectoryEnumerator.html#NSDirectoryEnumerator">NSDirectoryEnumerator</A>*) <b>enumeratorAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (NSDirectoryEnumerator*) <b>enumeratorAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">fileAttributesAtPath:traverseLink:</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>fileAttributesAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>traverseLink:</b> (BOOL)flag;<br>
|
||||
- (NSDictionary*) <b>fileAttributesAtPath:</b> (NSString*)path <b>traverseLink:</b> (BOOL)flag;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">fileExistsAtPath:</a></h3>
|
||||
- (BOOL) <b>fileExistsAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (BOOL) <b>fileExistsAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">fileExistsAtPath:isDirectory:</a></h3>
|
||||
- (BOOL) <b>fileExistsAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>isDirectory:</b> (BOOL*)isDirectory;<br>
|
||||
- (BOOL) <b>fileExistsAtPath:</b> (NSString*)path <b>isDirectory:</b> (BOOL*)isDirectory;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-15">fileSystemAttributesAtPath:</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>fileSystemAttributesAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (NSDictionary*) <b>fileSystemAttributesAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-16">fileSystemRepresentationWithPath:</a></h3>
|
||||
- (const char*) <b>fileSystemRepresentationWithPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (const char*) <b>fileSystemRepresentationWithPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">isDeletableFileAtPath:</a></h3>
|
||||
- (BOOL) <b>isDeletableFileAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (BOOL) <b>isDeletableFileAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">isExecutableFileAtPath:</a></h3>
|
||||
- (BOOL) <b>isExecutableFileAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (BOOL) <b>isExecutableFileAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-19">isReadableFileAtPath:</a></h3>
|
||||
- (BOOL) <b>isReadableFileAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (BOOL) <b>isReadableFileAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-20">isWritableFileAtPath:</a></h3>
|
||||
- (BOOL) <b>isWritableFileAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (BOOL) <b>isWritableFileAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-21">linkPath:toPath:handler:</a></h3>
|
||||
- (BOOL) <b>linkPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)source <b>toPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)destination <b>handler:</b> handler;<br>
|
||||
- (BOOL) <b>linkPath:</b> (NSString*)source <b>toPath:</b> (NSString*)destination <b>handler:</b> handler;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-22">movePath:toPath:handler:</a></h3>
|
||||
- (BOOL) <b>movePath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)source <b>toPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)destination <b>handler:</b> handler;<br>
|
||||
- (BOOL) <b>movePath:</b> (NSString*)source <b>toPath:</b> (NSString*)destination <b>handler:</b> handler;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-23">pathContentOfSymbolicLinkAtPath:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>pathContentOfSymbolicLinkAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)cStringPath;<br>
|
||||
- (NSString*) <b>pathContentOfSymbolicLinkAtPath:</b> (NSString*)cStringPath;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-24">removeFileAtPath:handler:</a></h3>
|
||||
- (BOOL) <b>removeFileAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>handler:</b> handler;<br>
|
||||
- (BOOL) <b>removeFileAtPath:</b> (NSString*)path <b>handler:</b> handler;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-25">stringWithFileSystemRepresentation:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringWithFileSystemRepresentation:</b> (const char*)string;<br>
|
||||
- (NSString*) <b>stringWithFileSystemRepresentation:</b> (const char*)string;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-26">subpathsAtPath:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>subpathsAtPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (NSArray*) <b>subpathsAtPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-27">fileManager:shouldProceedAfterError:</a></h3>
|
||||
- (BOOL) <b>fileManager:</b> (<A HREF="NSFileManager.html#NSFileManager">NSFileManager</A>*)manager <b>shouldProceedAfterError:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)errorInfo;<br>
|
||||
- (BOOL) <b>fileManager:</b> (NSFileManager*)manager <b>shouldProceedAfterError:</b> (NSDictionary*)errorInfo;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-28">fileManager:willProcessPath:</a></h3>
|
||||
- (BOOL) <b>fileManager:</b> (<A HREF="NSFileManager.html#NSFileManager">NSFileManager</A>*)manager <b>willProcessPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (BOOL) <b>fileManager:</b> (NSFileManager*)manager <b>willProcessPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSFormatter</a></h2>
|
||||
<h2><a name ="NSFormatter">NSFormatter</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSFormatter.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -35,17 +35,17 @@
|
|||
</ul>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-0">attributedStringForObjectValue:withDefaultAttributes:</a></h3>
|
||||
- (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*) <b>attributedStringForObjectValue:</b> (id)anObject <b>withDefaultAttributes:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)attributes;<br>
|
||||
- (NSAttributedString*) <b>attributedStringForObjectValue:</b> (id)anObject <b>withDefaultAttributes:</b> (NSDictionary*)attributes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">editingStringForObjectValue:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>editingStringForObjectValue:</b> (id)anObject;<br>
|
||||
- (NSString*) <b>editingStringForObjectValue:</b> (id)anObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">getObjectValue:forString:errorDescription:</a></h3>
|
||||
- (BOOL) <b>getObjectValue:</b> (id*)anObject <b>forString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)string <b>errorDescription:</b> (<A HREF="NSString.html#NSString">NSString</A>**)error;<br>
|
||||
- (BOOL) <b>getObjectValue:</b> (id*)anObject <b>forString:</b> (NSString*)string <b>errorDescription:</b> (NSString**)error;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -55,7 +55,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-4">stringForObjectValue:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringForObjectValue:</b> (id)anObject;<br>
|
||||
- (NSString*) <b>stringForObjectValue:</b> (id)anObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSHost</a></h2>
|
||||
<h2><a name ="NSHost">NSHost</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSHost.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -41,7 +41,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">currentHost</a></h3>
|
||||
+ (<A HREF="NSHost.html#NSHost">NSHost</A>*) <b>currentHost</b>;<br>
|
||||
+ (NSHost*) <b>currentHost</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -51,12 +51,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">hostWithAddress:</a></h3>
|
||||
+ (<A HREF="NSHost.html#NSHost">NSHost</A>*) <b>hostWithAddress:</b> (<A HREF="NSString.html#NSString">NSString</A>*)address;<br>
|
||||
+ (NSHost*) <b>hostWithAddress:</b> (NSString*)address;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">hostWithName:</a></h3>
|
||||
+ (<A HREF="NSHost.html#NSHost">NSHost</A>*) <b>hostWithName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name;<br>
|
||||
+ (NSHost*) <b>hostWithName:</b> (NSString*)name;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -72,27 +72,27 @@
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-6">address</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>address</b>;<br>
|
||||
- (NSString*) <b>address</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">addresses</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>addresses</b>;<br>
|
||||
- (NSArray*) <b>addresses</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">isEqualToHost:</a></h3>
|
||||
- (BOOL) <b>isEqualToHost:</b> (<A HREF="NSHost.html#NSHost">NSHost</A>*)aHost;<br>
|
||||
- (BOOL) <b>isEqualToHost:</b> (NSHost*)aHost;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">name</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>name</b>;<br>
|
||||
- (NSString*) <b>name</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">names</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>names</b>;<br>
|
||||
- (NSArray*) <b>names</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSInvocation</a></h2>
|
||||
<h2><a name ="NSInvocation">NSInvocation</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSInvocation.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -44,7 +44,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">invocationWithMethodSignature:</a></h3>
|
||||
+ (<A HREF="NSInvocation.html#NSInvocation">NSInvocation</A>*) <b>invocationWithMethodSignature:</b> (<A HREF="NSMethodSignature.html#NSMethodSignature">NSMethodSignature</A>*)signature;<br>
|
||||
+ (NSInvocation*) <b>invocationWithMethodSignature:</b> (NSMethodSignature*)signature;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -75,7 +75,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">methodSignature</a></h3>
|
||||
- (<A HREF="NSMethodSignature.html#NSMethodSignature">NSMethodSignature</A>*) <b>methodSignature</b>;<br>
|
||||
- (NSMethodSignature*) <b>methodSignature</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSLock</a></h2>
|
||||
<h2><a name ="NSLock">NSLock</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSLock.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSLocking
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -32,7 +32,7 @@
|
|||
</ul>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-0">lockBeforeDate:</a></h3>
|
||||
- (BOOL) <b>lockBeforeDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)limit;<br>
|
||||
- (BOOL) <b>lockBeforeDate:</b> (NSDate*)limit;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSMethodSignature</a></h2>
|
||||
<h2><a name ="NSMethodSignature">NSMethodSignature</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSMethodSignature.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSMutableArray</a></h2>
|
||||
<h2><a name ="NSMutableArray">NSMutableArray</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSArray.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSArray.html#NSArray">NSArray</A></p>
|
||||
<p><b>Inherits from: </b> NSArray</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -62,7 +62,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">addObjectsFromArray:</a></h3>
|
||||
- (void) <b>addObjectsFromArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)otherArray;<br>
|
||||
- (void) <b>addObjectsFromArray:</b> (NSArray*)otherArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -117,7 +117,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-13">removeObjectsInArray:</a></h3>
|
||||
- (void) <b>removeObjectsInArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)otherArray;<br>
|
||||
- (void) <b>removeObjectsInArray:</b> (NSArray*)otherArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -132,17 +132,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-16">replaceObjectsInRange:withObjectsFromArray:</a></h3>
|
||||
- (void) <b>replaceObjectsInRange:</b> (NSRange)aRange <b>withObjectsFromArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)otherArray;<br>
|
||||
- (void) <b>replaceObjectsInRange:</b> (NSRange)aRange <b>withObjectsFromArray:</b> (NSArray*)otherArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">replaceObjectsInRange:withObjectsFromArray:</a></h3>
|
||||
- (void) <b>replaceObjectsInRange:</b> (NSRange)aRange <b>withObjectsFromArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)otherArray;<br>
|
||||
- (void) <b>replaceObjectsInRange:</b> (NSRange)aRange <b>withObjectsFromArray:</b> (NSArray*)otherArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">setArray:</a></h3>
|
||||
- (void) <b>setArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)otherArray;<br>
|
||||
- (void) <b>setArray:</b> (NSArray*)otherArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSMutableAttributedString</a></h2>
|
||||
<h2><a name ="NSMutableAttributedString">NSMutableAttributedString</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSAttributedString.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A></p>
|
||||
<p><b>Inherits from: </b> NSAttributedString</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -43,17 +43,17 @@
|
|||
</ul>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-0">addAttribute:value:</a></h3>
|
||||
- (void) <b>addAttribute:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>value:</b> (id)value;<br>
|
||||
- (void) <b>addAttribute:</b> (NSString*)name <b>value:</b> (id)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">addAttributes:</a></h3>
|
||||
- (void) <b>addAttributes:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)attributes;<br>
|
||||
- (void) <b>addAttributes:</b> (NSDictionary*)attributes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">appendAttributedString:</a></h3>
|
||||
- (void) <b>appendAttributedString:</b> (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*)attributedString;<br>
|
||||
- (void) <b>appendAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -73,37 +73,37 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">insertAttributedString:</a></h3>
|
||||
- (void) <b>insertAttributedString:</b> (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*)attributedString;<br>
|
||||
- (void) <b>insertAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">mutableString</a></h3>
|
||||
- (<A HREF="NSMutableString.html#NSMutableString">NSMutableString</A>*) <b>mutableString</b>;<br>
|
||||
- (NSMutableString*) <b>mutableString</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">removeAttribute:range:</a></h3>
|
||||
- (void) <b>removeAttribute:</b> (<A HREF="NSString.html#NSString">NSString</A>*)name <b>range:</b> (NSRange)aRange;<br>
|
||||
- (void) <b>removeAttribute:</b> (NSString*)name <b>range:</b> (NSRange)aRange;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">replaceCharactersInRange:withAttributedString:</a></h3>
|
||||
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withAttributedString:</b> (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*)attributedString;<br>
|
||||
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">replaceCharactersInRange:withString:</a></h3>
|
||||
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">setAttributedString:</a></h3>
|
||||
- (void) <b>setAttributedString:</b> (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*)attributedString;<br>
|
||||
- (void) <b>setAttributedString:</b> (NSAttributedString*)attributedString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">setAttributes:</a></h3>
|
||||
- (void) <b>setAttributes:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)attributes;<br>
|
||||
- (void) <b>setAttributes:</b> (NSDictionary*)attributes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSMutableCharacterSet</a></h2>
|
||||
<h2><a name ="NSMutableCharacterSet">NSMutableCharacterSet</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSCharacterSet.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A></p>
|
||||
<p><b>Inherits from: </b> NSCharacterSet</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -42,17 +42,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-1">addCharactersInString:</a></h3>
|
||||
- (void) <b>addCharactersInString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (void) <b>addCharactersInString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">formIntersectionWithCharacterSet:</a></h3>
|
||||
- (void) <b>formIntersectionWithCharacterSet:</b> (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*)otherSet;<br>
|
||||
- (void) <b>formIntersectionWithCharacterSet:</b> (NSCharacterSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">formUnionWithCharacterSet:</a></h3>
|
||||
- (void) <b>formUnionWithCharacterSet:</b> (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*)otherSet;<br>
|
||||
- (void) <b>formUnionWithCharacterSet:</b> (NSCharacterSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -67,7 +67,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">removeCharactersInString:</a></h3>
|
||||
- (void) <b>removeCharactersInString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (void) <b>removeCharactersInString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSMutableDictionary</a></h2>
|
||||
<h2><a name ="NSMutableDictionary">NSMutableDictionary</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSDictionary.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSDictionary.html#NSDictionary">NSDictionary</A></p>
|
||||
<p><b>Inherits from: </b> NSDictionary</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -50,7 +50,7 @@
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-2">addEntriesFromDictionary:</a></h3>
|
||||
- (void) <b>addEntriesFromDictionary:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)otherDictionary;<br>
|
||||
- (void) <b>addEntriesFromDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -70,12 +70,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">removeObjectsForKeys:</a></h3>
|
||||
- (void) <b>removeObjectsForKeys:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)keyArray;<br>
|
||||
- (void) <b>removeObjectsForKeys:</b> (NSArray*)keyArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">setDictionary:</a></h3>
|
||||
- (void) <b>setDictionary:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)otherDictionary;<br>
|
||||
- (void) <b>setDictionary:</b> (NSDictionary*)otherDictionary;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSMutableSet</a></h2>
|
||||
<h2><a name ="NSMutableSet">NSMutableSet</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSSet.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSSet.html#NSSet">NSSet</A></p>
|
||||
<p><b>Inherits from: </b> NSSet</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -57,7 +57,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-3">addObjectsFromArray:</a></h3>
|
||||
- (void) <b>addObjectsFromArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)anArray;<br>
|
||||
- (void) <b>addObjectsFromArray:</b> (NSArray*)anArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -67,12 +67,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">intersectSet:</a></h3>
|
||||
- (void) <b>intersectSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)otherSet;<br>
|
||||
- (void) <b>intersectSet:</b> (NSSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">minusSet:</a></h3>
|
||||
- (void) <b>minusSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)otherSet;<br>
|
||||
- (void) <b>minusSet:</b> (NSSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -87,12 +87,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-9">setSet:</a></h3>
|
||||
- (void) <b>setSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)otherSet;<br>
|
||||
- (void) <b>setSet:</b> (NSSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">unionSet:</a></h3>
|
||||
- (void) <b>unionSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)otherSet;<br>
|
||||
- (void) <b>unionSet:</b> (NSSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSMutableString</a></h2>
|
||||
<h2><a name ="NSMutableString">NSMutableString</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSString.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSString.html#NSString">NSString</A></p>
|
||||
<p><b>Inherits from: </b> NSString</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -39,18 +39,18 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">stringWithCapacity:</a></h3>
|
||||
+ (<A HREF="NSMutableString.html#NSMutableString">NSMutableString</A>*) <b>stringWithCapacity:</b> (unsigned int)capacity;<br>
|
||||
+ (NSMutableString*) <b>stringWithCapacity:</b> (unsigned int)capacity;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">appendFormat:</a></h3>
|
||||
- (void) <b>appendFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format,;<br>
|
||||
- (void) <b>appendFormat:</b> (NSString*)format,;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">appendString:</a></h3>
|
||||
- (void) <b>appendString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (void) <b>appendString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -65,17 +65,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">insertString:</a></h3>
|
||||
- (void) <b>insertString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (void) <b>insertString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">replaceCharactersInRange:withString:</a></h3>
|
||||
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (void) <b>replaceCharactersInRange:</b> (NSRange)aRange <b>withString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">replaceString:withString:</a></h3>
|
||||
- (void) <b>replaceString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString <b>withString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)replacement;<br>
|
||||
- (void) <b>replaceString:</b> (NSString*)aString <b>withString:</b> (NSString*)replacement;<br>
|
||||
Standards: GNUstep NotMacOS-X NotOpenStep<br>
|
||||
|
||||
Replaces any (and all) occurrances of <em>aString</em> in the
|
||||
|
@ -86,7 +86,7 @@ Standards: GNUstep NotMacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-8">setString:</a></h3>
|
||||
- (void) <b>setString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (void) <b>setString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSNotification</a></h2>
|
||||
<h2><a name ="NSNotification">NSNotification</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSNotification.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -35,18 +35,18 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">notificationWithName:object:</a></h3>
|
||||
+ (id) <b>notificationWithName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aName <b>object:</b> (id)anObject;<br>
|
||||
+ (id) <b>notificationWithName:</b> (NSString*)aName <b>object:</b> (id)anObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">notificationWithName:object:userInfo:</a></h3>
|
||||
+ (id) <b>notificationWithName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aName <b>object:</b> (id)anObject <b>userInfo:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)userInfo;<br>
|
||||
+ (id) <b>notificationWithName:</b> (NSString*)aName <b>object:</b> (id)anObject <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-2">name</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>name</b>;<br>
|
||||
- (NSString*) <b>name</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -56,7 +56,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-4">userInfo</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>userInfo</b>;<br>
|
||||
- (NSDictionary*) <b>userInfo</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSNotificationCenter</a></h2>
|
||||
<h2><a name ="NSNotificationCenter">NSNotificationCenter</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSNotification.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -37,28 +37,28 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">defaultCenter</a></h3>
|
||||
+ (<A HREF="NSNotificationCenter.html#NSNotificationCenter">NSNotificationCenter</A>*) <b>defaultCenter</b>;<br>
|
||||
+ (NSNotificationCenter*) <b>defaultCenter</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">addObserver:selector:name:</a></h3>
|
||||
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName;<br>
|
||||
- (void) <b>addObserver:</b> (id)anObserver <b>selector:</b> (SEL)aSelector <b>name:</b> (NSString*)notificationName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">postNotification:</a></h3>
|
||||
- (void) <b>postNotification:</b> (<A HREF="NSNotification.html#NSNotification">NSNotification</A>*)notification;<br>
|
||||
- (void) <b>postNotification:</b> (NSNotification*)notification;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">postNotificationName:</a></h3>
|
||||
- (void) <b>postNotificationName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName;<br>
|
||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">postNotificationName:object:userInfo:</a></h3>
|
||||
- (void) <b>postNotificationName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName <b>object:</b> (id)anObject <b>userInfo:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)userInfo;<br>
|
||||
- (void) <b>postNotificationName:</b> (NSString*)notificationName <b>object:</b> (id)anObject <b>userInfo:</b> (NSDictionary*)userInfo;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -68,7 +68,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">removeObserver:name:object:</a></h3>
|
||||
- (void) <b>removeObserver:</b> (id)anObserver <b>name:</b> (<A HREF="NSString.html#NSString">NSString</A>*)notificationName <b>object:</b> (id)anObject;<br>
|
||||
- (void) <b>removeObserver:</b> (id)anObserver <b>name:</b> (NSString*)notificationName <b>object:</b> (id)anObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSNotificationQueue</a></h2>
|
||||
<h2><a name ="NSNotificationQueue">NSNotificationQueue</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSNotificationQueue.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -35,28 +35,28 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">defaultQueue</a></h3>
|
||||
+ (<A HREF="NSNotificationQueue.html#NSNotificationQueue">NSNotificationQueue</A>*) <b>defaultQueue</b>;<br>
|
||||
+ (NSNotificationQueue*) <b>defaultQueue</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">dequeueNotificationsMatching:</a></h3>
|
||||
- (void) <b>dequeueNotificationsMatching:</b> (<A HREF="NSNotification.html#NSNotification">NSNotification</A>*)notification;<br>
|
||||
- (void) <b>dequeueNotificationsMatching:</b> (NSNotification*)notification;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">enqueueNotification:</a></h3>
|
||||
- (void) <b>enqueueNotification:</b> (<A HREF="NSNotification.html#NSNotification">NSNotification</A>*)notification;<br>
|
||||
- (void) <b>enqueueNotification:</b> (NSNotification*)notification;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">enqueueNotification:postingStyle:coalesceMask:</a></h3>
|
||||
- (void) <b>enqueueNotification:</b> (<A HREF="NSNotification.html#NSNotification">NSNotification</A>*)notification <b>postingStyle:</b> (NSPostingStyle)postingStyle <b>coalesceMask:</b> (unsigned int)coalesceMask;<br>
|
||||
- (void) <b>enqueueNotification:</b> (NSNotification*)notification <b>postingStyle:</b> (NSPostingStyle)postingStyle <b>coalesceMask:</b> (unsigned int)coalesceMask;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">initWithNotificationCenter:</a></h3>
|
||||
- (id) <b>initWithNotificationCenter:</b> (<A HREF="NSNotificationCenter.html#NSNotificationCenter">NSNotificationCenter</A>*)notificationCenter;<br>
|
||||
- (id) <b>initWithNotificationCenter:</b> (NSNotificationCenter*)notificationCenter;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSNumber</a></h2>
|
||||
<h2><a name ="NSNumber">NSNumber</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSValue.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSValue.html#NSValue">NSValue</A></p>
|
||||
<p><b>Inherits from: </b> NSValue</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -75,67 +75,67 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">numberWithBool:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithBool:</b> (BOOL)value;<br>
|
||||
+ (NSNumber*) <b>numberWithBool:</b> (BOOL)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">numberWithChar:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithChar:</b> (char)value;<br>
|
||||
+ (NSNumber*) <b>numberWithChar:</b> (char)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">numberWithDouble:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithDouble:</b> (double)value;<br>
|
||||
+ (NSNumber*) <b>numberWithDouble:</b> (double)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">numberWithFloat:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithFloat:</b> (float)value;<br>
|
||||
+ (NSNumber*) <b>numberWithFloat:</b> (float)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">numberWithInt:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithInt:</b> (int)value;<br>
|
||||
+ (NSNumber*) <b>numberWithInt:</b> (int)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">numberWithLong:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithLong:</b> (long int)value;<br>
|
||||
+ (NSNumber*) <b>numberWithLong:</b> (long int)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">numberWithLongLong:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithLongLong:</b> (long long int)value;<br>
|
||||
+ (NSNumber*) <b>numberWithLongLong:</b> (long long int)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">numberWithShort:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithShort:</b> (short int)value;<br>
|
||||
+ (NSNumber*) <b>numberWithShort:</b> (short int)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">numberWithUnsignedChar:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithUnsignedChar:</b> (unsigned char)value;<br>
|
||||
+ (NSNumber*) <b>numberWithUnsignedChar:</b> (unsigned char)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">numberWithUnsignedInt:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithUnsignedInt:</b> (unsigned int)value;<br>
|
||||
+ (NSNumber*) <b>numberWithUnsignedInt:</b> (unsigned int)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">numberWithUnsignedLong:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithUnsignedLong:</b> (unsigned long int)value;<br>
|
||||
+ (NSNumber*) <b>numberWithUnsignedLong:</b> (unsigned long int)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">numberWithUnsignedLongLong:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithUnsignedLongLong:</b> (unsigned long long int)value;<br>
|
||||
+ (NSNumber*) <b>numberWithUnsignedLongLong:</b> (unsigned long long int)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">numberWithUnsignedShort:</a></h3>
|
||||
+ (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>numberWithUnsignedShort:</b> (unsigned short int)value;<br>
|
||||
+ (NSNumber*) <b>numberWithUnsignedShort:</b> (unsigned short int)value;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -151,7 +151,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-15">compare:</a></h3>
|
||||
- (NSComparisonResult) <b>compare:</b> (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*)aNumber;<br>
|
||||
- (NSComparisonResult) <b>compare:</b> (NSNumber*)aNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -161,12 +161,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-17">description</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
- (NSString*) <b>description</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)aLocale;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -251,7 +251,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-35">isEqualToNumber:</a></h3>
|
||||
- (BOOL) <b>isEqualToNumber:</b> (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*)aNumber;<br>
|
||||
- (BOOL) <b>isEqualToNumber:</b> (NSNumber*)aNumber;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -271,7 +271,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-39">stringValue</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringValue</b>;<br>
|
||||
- (NSString*) <b>stringValue</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSNumberFormatter</a></h2>
|
||||
<h2><a name ="NSNumberFormatter">NSNumberFormatter</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSNumberFormatter.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSFormatter.html#NSFormatter">NSFormatter</A></p>
|
||||
<p><b>Inherits from: </b> NSFormatter</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -67,27 +67,27 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-1">attributedStringForNil</a></h3>
|
||||
- (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*) <b>attributedStringForNil</b>;<br>
|
||||
- (NSAttributedString*) <b>attributedStringForNil</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">attributedStringForNotANumber</a></h3>
|
||||
- (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*) <b>attributedStringForNotANumber</b>;<br>
|
||||
- (NSAttributedString*) <b>attributedStringForNotANumber</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">attributedStringForZero</a></h3>
|
||||
- (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*) <b>attributedStringForZero</b>;<br>
|
||||
- (NSAttributedString*) <b>attributedStringForZero</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">decimalSeparator</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>decimalSeparator</b>;<br>
|
||||
- (NSString*) <b>decimalSeparator</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">format</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>format</b>;<br>
|
||||
- (NSString*) <b>format</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -102,27 +102,27 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-8">maximum</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>maximum</b>;<br>
|
||||
- (NSDecimalNumber*) <b>maximum</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">minimum</a></h3>
|
||||
- (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*) <b>minimum</b>;<br>
|
||||
- (NSDecimalNumber*) <b>minimum</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">negativeFormat</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>negativeFormat</b>;<br>
|
||||
- (NSString*) <b>negativeFormat</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">positiveFormat</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>positiveFormat</b>;<br>
|
||||
- (NSString*) <b>positiveFormat</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">roundingBehavior</a></h3>
|
||||
- (<A HREF="NSDecimalNumberHandler.html#NSDecimalNumberHandler">NSDecimalNumberHandler</A>*) <b>roundingBehavior</b>;<br>
|
||||
- (NSDecimalNumberHandler*) <b>roundingBehavior</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -132,27 +132,27 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-14">setAttributedStringForNil:</a></h3>
|
||||
- (void) <b>setAttributedStringForNil:</b> (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*)newAttributedString;<br>
|
||||
- (void) <b>setAttributedStringForNil:</b> (NSAttributedString*)newAttributedString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-15">setAttributedStringForNotANumber:</a></h3>
|
||||
- (void) <b>setAttributedStringForNotANumber:</b> (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*)newAttributedString;<br>
|
||||
- (void) <b>setAttributedStringForNotANumber:</b> (NSAttributedString*)newAttributedString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-16">setAttributedStringForZero:</a></h3>
|
||||
- (void) <b>setAttributedStringForZero:</b> (<A HREF="NSAttributedString.html#NSAttributedString">NSAttributedString</A>*)newAttributedString;<br>
|
||||
- (void) <b>setAttributedStringForZero:</b> (NSAttributedString*)newAttributedString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">setDecimalSeparator:</a></h3>
|
||||
- (void) <b>setDecimalSeparator:</b> (<A HREF="NSString.html#NSString">NSString</A>*)newSeparator;<br>
|
||||
- (void) <b>setDecimalSeparator:</b> (NSString*)newSeparator;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">setFormat:</a></h3>
|
||||
- (void) <b>setFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aFormat;<br>
|
||||
- (void) <b>setFormat:</b> (NSString*)aFormat;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -167,57 +167,57 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-21">setMaximum:</a></h3>
|
||||
- (void) <b>setMaximum:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)aMaximum;<br>
|
||||
- (void) <b>setMaximum:</b> (NSDecimalNumber*)aMaximum;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-22">setMinimum:</a></h3>
|
||||
- (void) <b>setMinimum:</b> (<A HREF="NSDecimalNumber.html#NSDecimalNumber">NSDecimalNumber</A>*)aMinimum;<br>
|
||||
- (void) <b>setMinimum:</b> (NSDecimalNumber*)aMinimum;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-23">setNegativeFormat:</a></h3>
|
||||
- (void) <b>setNegativeFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aFormat;<br>
|
||||
- (void) <b>setNegativeFormat:</b> (NSString*)aFormat;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-24">setPositiveFormat:</a></h3>
|
||||
- (void) <b>setPositiveFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aFormat;<br>
|
||||
- (void) <b>setPositiveFormat:</b> (NSString*)aFormat;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-25">setRoundingBehavior:</a></h3>
|
||||
- (void) <b>setRoundingBehavior:</b> (<A HREF="NSDecimalNumberHandler.html#NSDecimalNumberHandler">NSDecimalNumberHandler</A>*)newRoundingBehavior;<br>
|
||||
- (void) <b>setRoundingBehavior:</b> (NSDecimalNumberHandler*)newRoundingBehavior;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-26">setTextAttributesForNegativeValues:</a></h3>
|
||||
- (void) <b>setTextAttributesForNegativeValues:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)newAttributes;<br>
|
||||
- (void) <b>setTextAttributesForNegativeValues:</b> (NSDictionary*)newAttributes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-27">setTextAttributesForPositiveValues:</a></h3>
|
||||
- (void) <b>setTextAttributesForPositiveValues:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)newAttributes;<br>
|
||||
- (void) <b>setTextAttributesForPositiveValues:</b> (NSDictionary*)newAttributes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-28">setThousandSeparator:</a></h3>
|
||||
- (void) <b>setThousandSeparator:</b> (<A HREF="NSString.html#NSString">NSString</A>*)newSeparator;<br>
|
||||
- (void) <b>setThousandSeparator:</b> (NSString*)newSeparator;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-29">textAttributesForNegativeValues</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>textAttributesForNegativeValues</b>;<br>
|
||||
- (NSDictionary*) <b>textAttributesForNegativeValues</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-30">textAttributesForPositiveValues</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>textAttributesForPositiveValues</b>;<br>
|
||||
- (NSDictionary*) <b>textAttributesForPositiveValues</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-31">thousandSeparator</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>thousandSeparator</b>;<br>
|
||||
- (NSString*) <b>thousandSeparator</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -104,7 +104,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">description</a></h3>
|
||||
+ (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
+ (NSString*) <b>description</b>;<br>
|
||||
|
||||
The <code>description</code> factory method describes the class
|
||||
of the receiver. In the default GNUstep implementation, this
|
||||
|
@ -112,7 +112,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-7">descriptionWithLocale:</a></h3>
|
||||
+ (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)aLocale;<br>
|
||||
+ (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale;<br>
|
||||
Standards: GNUstep<br>
|
||||
|
||||
The default (NSOBject) implementation of this method simply calls
|
||||
|
@ -121,7 +121,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-8">descriptionWithLocale:indent:</a></h3>
|
||||
+ (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)aLocale <b>indent:</b> (unsigned int)level;<br>
|
||||
+ (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level;<br>
|
||||
Standards: GNUstep<br>
|
||||
|
||||
The default (NSObject) implementation of this method simply calls
|
||||
|
@ -130,7 +130,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-9">descriptionWithLocale:indent:to:</a></h3>
|
||||
+ (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)aLocale <b>indent:</b> (unsigned int)level <b>to:</b> (id<GNUDescriptionDestination>)output;<br>
|
||||
+ (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level <b>to:</b> (id<GNUDescriptionDestination>)output;<br>
|
||||
Standards: GNUstep<br>
|
||||
|
||||
The default (NSObject) implementation of this method simply calls
|
||||
|
@ -149,7 +149,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-12">instanceMethodSignatureForSelector:</a></h3>
|
||||
+ (<A HREF="NSMethodSignature.html#NSMethodSignature">NSMethodSignature</A>*) <b>instanceMethodSignatureForSelector:</b> (SEL)aSelector;<br>
|
||||
+ (NSMethodSignature*) <b>instanceMethodSignatureForSelector:</b> (SEL)aSelector;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -195,7 +195,7 @@ Standards: GNUstep<br>
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-21">awakeAfterUsingCoder:</a></h3>
|
||||
- (id) <b>awakeAfterUsingCoder:</b> (<A HREF="NSCoder.html#NSCoder">NSCoder</A>*)aDecoder;<br>
|
||||
- (id) <b>awakeAfterUsingCoder:</b> (NSCoder*)aDecoder;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -215,7 +215,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-25">connection:handleRequest:</a></h3>
|
||||
- (BOOL) <b>connection:</b> (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*)connection <b>handleRequest:</b> (<A HREF="NSDistantObjectRequest.html#NSDistantObjectRequest">NSDistantObjectRequest</A>*)doreq;<br>
|
||||
- (BOOL) <b>connection:</b> (NSConnection*)connection <b>handleRequest:</b> (NSDistantObjectRequest*)doreq;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -230,7 +230,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-28">description</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
- (NSString*) <b>description</b>;<br>
|
||||
|
||||
<p>
|
||||
|
||||
|
@ -250,7 +250,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-29">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)aLocale;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale;<br>
|
||||
Standards: GNUstep<br>
|
||||
|
||||
The default (NSOBject) implementation of this method simply calls
|
||||
|
@ -259,7 +259,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-30">descriptionWithLocale:indent:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)aLocale <b>indent:</b> (unsigned int)level;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level;<br>
|
||||
Standards: GNUstep<br>
|
||||
|
||||
The default (NSObject) implementation of this method simply calls
|
||||
|
@ -268,7 +268,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-31">descriptionWithLocale:indent:to:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)aLocale <b>indent:</b> (unsigned int)level <b>to:</b> (id<GNUDescriptionDestination>)output;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)aLocale <b>indent:</b> (unsigned int)level <b>to:</b> (id<GNUDescriptionDestination>)output;<br>
|
||||
Standards: GNUstep<br>
|
||||
|
||||
The default (NSObject) implementation of this method simply calls
|
||||
|
@ -289,7 +289,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-33">forwardInvocation:</a></h3>
|
||||
- (void) <b>forwardInvocation:</b> (<A HREF="NSInvocation.html#NSInvocation">NSInvocation</A>*)anInvocation;<br>
|
||||
- (void) <b>forwardInvocation:</b> (NSInvocation*)anInvocation;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -314,7 +314,7 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-38">methodSignatureForSelector:</a></h3>
|
||||
- (<A HREF="NSMethodSignature.html#NSMethodSignature">NSMethodSignature</A>*) <b>methodSignatureForSelector:</b> (SEL)aSelector;<br>
|
||||
- (NSMethodSignature*) <b>methodSignatureForSelector:</b> (SEL)aSelector;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -329,22 +329,22 @@ Standards: GNUstep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-41">performSelector:withObject:afterDelay:inModes:</a></h3>
|
||||
- (void) <b>performSelector:</b> (SEL)aSelector <b>withObject:</b> (id)anArgument <b>afterDelay:</b> (NSTimeInterval)delay <b>inModes:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)modes;<br>
|
||||
- (void) <b>performSelector:</b> (SEL)aSelector <b>withObject:</b> (id)anArgument <b>afterDelay:</b> (NSTimeInterval)delay <b>inModes:</b> (NSArray*)modes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-42">replacementObjectForArchiver:</a></h3>
|
||||
- (id) <b>replacementObjectForArchiver:</b> (<A HREF="NSArchiver.html#NSArchiver">NSArchiver</A>*)anArchiver;<br>
|
||||
- (id) <b>replacementObjectForArchiver:</b> (NSArchiver*)anArchiver;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-43">replacementObjectForCoder:</a></h3>
|
||||
- (id) <b>replacementObjectForCoder:</b> (<A HREF="NSCoder.html#NSCoder">NSCoder</A>*)aCoder;<br>
|
||||
- (id) <b>replacementObjectForCoder:</b> (NSCoder*)aCoder;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-44">replacementObjectForPortCoder:</a></h3>
|
||||
- (id) <b>replacementObjectForPortCoder:</b> (<A HREF="NSPortCoder.html#NSPortCoder">NSPortCoder</A>*)aCoder;<br>
|
||||
- (id) <b>replacementObjectForPortCoder:</b> (NSPortCoder*)aCoder;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSPort</a></h2>
|
||||
<h2><a name ="NSPort">NSPort</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSPort.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -44,18 +44,18 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">port</a></h3>
|
||||
+ (<A HREF="NSPort.html#NSPort">NSPort</A>*) <b>port</b>;<br>
|
||||
+ (NSPort*) <b>port</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">portWithMachPort:</a></h3>
|
||||
+ (<A HREF="NSPort.html#NSPort">NSPort</A>*) <b>portWithMachPort:</b> (int)machPort;<br>
|
||||
+ (NSPort*) <b>portWithMachPort:</b> (int)machPort;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-2">addConnection:toRunLoop:forMode:</a></h3>
|
||||
- (void) <b>addConnection:</b> (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*)connection <b>toRunLoop:</b> (<A HREF="NSRunLoop.html#NSRunLoop">NSRunLoop</A>*)runLoop <b>forMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode;<br>
|
||||
- (void) <b>addConnection:</b> (NSConnection*)connection <b>toRunLoop:</b> (NSRunLoop*)runLoop <b>forMode:</b> (NSString*)mode;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -85,7 +85,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-8">removeConnection:fromRunLoop:</a></h3>
|
||||
- (void) <b>removeConnection:</b> (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*)connection <b>fromRunLoop:</b> (<A HREF="NSRunLoop.html#NSRunLoop">NSRunLoop</A>*)runLoop;<br>
|
||||
- (void) <b>removeConnection:</b> (NSConnection*)connection <b>fromRunLoop:</b> (NSRunLoop*)runLoop;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -105,12 +105,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-12">handlePortMessage:</a></h3>
|
||||
- (void) <b>handlePortMessage:</b> (<A HREF="NSPortMessage.html#NSPortMessage">NSPortMessage</A>*)portMessage;<br>
|
||||
- (void) <b>handlePortMessage:</b> (NSPortMessage*)portMessage;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">limitDateForMode:</a></h3>
|
||||
- (<A HREF="NSDate.html#NSDate">NSDate</A>*) <b>limitDateForMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode;<br>
|
||||
- (NSDate*) <b>limitDateForMode:</b> (NSString*)mode;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSPortCoder</a></h2>
|
||||
<h2><a name ="NSPortCoder">NSPortCoder</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSPortCoder.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSCoder.html#NSCoder">NSCoder</A></p>
|
||||
<p><b>Inherits from: </b> NSCoder</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -37,18 +37,18 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">portCoderWithReceivePort:sendPort:components:</a></h3>
|
||||
+ (id) <b>portCoderWithReceivePort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)receivePort <b>sendPort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)sendPort <b>components:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>)components;<br>
|
||||
+ (id) <b>portCoderWithReceivePort:</b> (NSPort*)receivePort <b>sendPort:</b> (NSPort*)sendPort <b>components:</b> (NSArray)components;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">connection</a></h3>
|
||||
- (<A HREF="NSConnection.html#NSConnection">NSConnection</A>*) <b>connection</b>;<br>
|
||||
- (NSConnection*) <b>connection</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">decodePortObject</a></h3>
|
||||
- (<A HREF="NSPort.html#NSPort">NSPort</A>*) <b>decodePortObject</b>;<br>
|
||||
- (NSPort*) <b>decodePortObject</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -58,7 +58,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-4">encodePortObject:</a></h3>
|
||||
- (void) <b>encodePortObject:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)aPort;<br>
|
||||
- (void) <b>encodePortObject:</b> (NSPort*)aPort;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSPortMessage</a></h2>
|
||||
<h2><a name ="NSPortMessage">NSPortMessage</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSPortMessage.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -38,7 +38,7 @@
|
|||
</ul>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-0">components</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>components</b>;<br>
|
||||
- (NSArray*) <b>components</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -48,7 +48,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">initWithSendPort:receivePort:</a></h3>
|
||||
- (id) <b>initWithSendPort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)sendPort <b>receivePort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)receivePort;<br>
|
||||
- (id) <b>initWithSendPort:</b> (NSPort*)sendPort <b>receivePort:</b> (NSPort*)receivePort;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -58,17 +58,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-4">receivePort</a></h3>
|
||||
- (<A HREF="NSPort.html#NSPort">NSPort</A>*) <b>receivePort</b>;<br>
|
||||
- (NSPort*) <b>receivePort</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">sendBeforeDate:</a></h3>
|
||||
- (BOOL) <b>sendBeforeDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)aDate;<br>
|
||||
- (BOOL) <b>sendBeforeDate:</b> (NSDate*)aDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">sendPort</a></h3>
|
||||
- (<A HREF="NSPort.html#NSPort">NSPort</A>*) <b>sendPort</b>;<br>
|
||||
- (NSPort*) <b>sendPort</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSPortNameServer</a></h2>
|
||||
<h2><a name ="NSPortNameServer">NSPortNameServer</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSPortNameServer.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -41,22 +41,22 @@
|
|||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">portForName:</a></h3>
|
||||
- (<A HREF="NSPort.html#NSPort">NSPort</A>*) <b>portForName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)portName;<br>
|
||||
- (NSPort*) <b>portForName:</b> (NSString*)portName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">portForName:</a></h3>
|
||||
- (<A HREF="NSPort.html#NSPort">NSPort</A>*) <b>portForName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)portName;<br>
|
||||
- (NSPort*) <b>portForName:</b> (NSString*)portName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">registerPort:forName:</a></h3>
|
||||
- (BOOL) <b>registerPort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)aPort <b>forName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)portName;<br>
|
||||
- (BOOL) <b>registerPort:</b> (NSPort*)aPort <b>forName:</b> (NSString*)portName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">removePortForName:</a></h3>
|
||||
- (void) <b>removePortForName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)portName;<br>
|
||||
- (void) <b>removePortForName:</b> (NSString*)portName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSProcessInfo</a></h2>
|
||||
<h2><a name ="NSProcessInfo">NSProcessInfo</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSProcessinfo.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -39,28 +39,28 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">processInfo</a></h3>
|
||||
+ (<A HREF="NSProcessInfo.html#NSProcessInfo">NSProcessInfo</A>*) <b>processInfo</b>;<br>
|
||||
+ (NSProcessInfo*) <b>processInfo</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">arguments</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>arguments</b>;<br>
|
||||
- (NSArray*) <b>arguments</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">environment</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>environment</b>;<br>
|
||||
- (NSDictionary*) <b>environment</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">globallyUniqueString</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>globallyUniqueString</b>;<br>
|
||||
- (NSString*) <b>globallyUniqueString</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">hostName</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>hostName</b>;<br>
|
||||
- (NSString*) <b>hostName</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -70,17 +70,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">operatingSystemName</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>operatingSystemName</b>;<br>
|
||||
- (NSString*) <b>operatingSystemName</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">processName</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>processName</b>;<br>
|
||||
- (NSString*) <b>processName</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">setProcessName:</a></h3>
|
||||
- (void) <b>setProcessName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)newName;<br>
|
||||
- (void) <b>setProcessName:</b> (NSString*)newName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSProtocolChecker</a></h2>
|
||||
<h2><a name ="NSProtocolChecker">NSProtocolChecker</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSProtocolChecker.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<hr>
|
||||
|
||||
|
||||
|
@ -34,18 +34,18 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">protocolCheckerWithTarget:</a></h3>
|
||||
+ (id) <b>protocolCheckerWithTarget:</b> (<A HREF="NSObject.html#NSObject">NSObject</A>*)anObject;<br>
|
||||
+ (id) <b>protocolCheckerWithTarget:</b> (NSObject*)anObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">forwardInvocation:</a></h3>
|
||||
- (void) <b>forwardInvocation:</b> (<A HREF="NSInvocation.html#NSInvocation">NSInvocation</A>*)anInvocation;<br>
|
||||
- (void) <b>forwardInvocation:</b> (NSInvocation*)anInvocation;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">initWithTarget:</a></h3>
|
||||
- (id) <b>initWithTarget:</b> (<A HREF="NSObject.html#NSObject">NSObject</A>*)anObject;<br>
|
||||
- (id) <b>initWithTarget:</b> (NSObject*)anObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -60,7 +60,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">target</a></h3>
|
||||
- (<A HREF="NSObject.html#NSObject">NSObject</A>*) <b>target</b>;<br>
|
||||
- (NSObject*) <b>target</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -85,12 +85,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-8">description</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
- (NSString*) <b>description</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">forwardInvocation:</a></h3>
|
||||
- (void) <b>forwardInvocation:</b> (<A HREF="NSInvocation.html#NSInvocation">NSInvocation</A>*)anInvocation;<br>
|
||||
- (void) <b>forwardInvocation:</b> (NSInvocation*)anInvocation;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -110,7 +110,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-13">methodSignatureForSelector:</a></h3>
|
||||
- (<A HREF="NSMethodSignature.html#NSMethodSignature">NSMethodSignature</A>*) <b>methodSignatureForSelector:</b> (SEL)aSelector;<br>
|
||||
- (NSMethodSignature*) <b>methodSignatureForSelector:</b> (SEL)aSelector;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSRecursiveLock</a></h2>
|
||||
<h2><a name ="NSRecursiveLock">NSRecursiveLock</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSLock.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSLocking
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -32,7 +32,7 @@
|
|||
</ul>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-0">lockBeforeDate:</a></h3>
|
||||
- (BOOL) <b>lockBeforeDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)limit;<br>
|
||||
- (BOOL) <b>lockBeforeDate:</b> (NSDate*)limit;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSRunLoop</a></h2>
|
||||
<h2><a name ="NSRunLoop">NSRunLoop</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSRunLoop.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -43,23 +43,23 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">currentRunLoop</a></h3>
|
||||
+ (<A HREF="NSRunLoop.html#NSRunLoop">NSRunLoop</A>*) <b>currentRunLoop</b>;<br>
|
||||
+ (NSRunLoop*) <b>currentRunLoop</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">acceptInputForMode:beforeDate:</a></h3>
|
||||
- (void) <b>acceptInputForMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode <b>beforeDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)limitDate;<br>
|
||||
- (void) <b>acceptInputForMode:</b> (NSString*)mode <b>beforeDate:</b> (NSDate*)limitDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">addPort:forMode:</a></h3>
|
||||
- (void) <b>addPort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)aPort <b>forMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode;<br>
|
||||
- (void) <b>addPort:</b> (NSPort*)aPort <b>forMode:</b> (NSString*)mode;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">addTimer:forMode:</a></h3>
|
||||
- (void) <b>addTimer:</b> (<A HREF="NSTimer.html#NSTimer">NSTimer</A>*)aTimer <b>forMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode;<br>
|
||||
- (void) <b>addTimer:</b> (NSTimer*)aTimer <b>forMode:</b> (NSString*)mode;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -74,22 +74,22 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">currentMode</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>currentMode</b>;<br>
|
||||
- (NSString*) <b>currentMode</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">limitDateForMode:</a></h3>
|
||||
- (<A HREF="NSDate.html#NSDate">NSDate</A>*) <b>limitDateForMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode;<br>
|
||||
- (NSDate*) <b>limitDateForMode:</b> (NSString*)mode;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">performSelector:target:argument:order:modes:</a></h3>
|
||||
- (void) <b>performSelector:</b> (SEL)aSelector <b>target:</b> (id)target <b>argument:</b> (id)anArgument <b>order:</b> (unsigned int)order <b>modes:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)modes;<br>
|
||||
- (void) <b>performSelector:</b> (SEL)aSelector <b>target:</b> (id)target <b>argument:</b> (id)anArgument <b>order:</b> (unsigned int)order <b>modes:</b> (NSArray*)modes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">removePort:forMode:</a></h3>
|
||||
- (void) <b>removePort:</b> (<A HREF="NSPort.html#NSPort">NSPort</A>*)aPort <b>forMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode;<br>
|
||||
- (void) <b>removePort:</b> (NSPort*)aPort <b>forMode:</b> (NSString*)mode;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -99,12 +99,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-11">runMode:beforeDate:</a></h3>
|
||||
- (BOOL) <b>runMode:</b> (<A HREF="NSString.html#NSString">NSString</A>*)mode <b>beforeDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)limitDate;<br>
|
||||
- (BOOL) <b>runMode:</b> (NSString*)mode <b>beforeDate:</b> (NSDate*)limitDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">runUntilDate:</a></h3>
|
||||
- (void) <b>runUntilDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)limitDate;<br>
|
||||
- (void) <b>runUntilDate:</b> (NSDate*)limitDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">The NSScanner class documentation</a></h2>
|
||||
<h2><a name ="NSScanner">NSScanner</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSScanner.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCopying
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -70,7 +70,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">localizedScannerWithString:</a></h3>
|
||||
+ (id) <b>localizedScannerWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
+ (id) <b>localizedScannerWithString:</b> (NSString*)aString;<br>
|
||||
|
||||
Returns an NSScanner instance set up to scan aString
|
||||
(using <a href ="#initWithString:">initWithString:</a>)
|
||||
|
@ -79,7 +79,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-1">scannerWithString:</a></h3>
|
||||
+ (id) <b>scannerWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
+ (id) <b>scannerWithString:</b> (NSString*)aString;<br>
|
||||
|
||||
Returns an NSScanner instance set up to scan aString
|
||||
(using <a href ="#initWithString:">initWithString:</a>)
|
||||
|
@ -98,7 +98,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-3">charactersToBeSkipped</a></h3>
|
||||
- (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*) <b>charactersToBeSkipped</b>;<br>
|
||||
- (NSCharacterSet*) <b>charactersToBeSkipped</b>;<br>
|
||||
|
||||
Returns a set of characters containing those characters that the
|
||||
scanner ignores when starting any scan operation. Once a character
|
||||
|
@ -111,7 +111,7 @@
|
|||
<hr>
|
||||
<h3><a name ="initWithString:">initWithString:</a></h3>
|
||||
<b>This is the designated initialiser </b><br>
|
||||
- (id) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (id) <b>initWithString:</b> (NSString*)aString;<br>
|
||||
|
||||
Initialises the scanner to scan aString. The GNUstep
|
||||
implementation may make an internal copy of the original
|
||||
|
@ -131,7 +131,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">locale</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>locale</b>;<br>
|
||||
- (NSDictionary*) <b>locale</b>;<br>
|
||||
|
||||
Returns the locale set for the scanner, or nil if no locale has
|
||||
been set. A scanner uses it's locale to alter the way it handles
|
||||
|
@ -140,7 +140,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">scanCharactersFromSet:intoString:</a></h3>
|
||||
- (BOOL) <b>scanCharactersFromSet:</b> (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*)set <b>intoString:</b> (<A HREF="NSString.html#NSString">NSString</A>**)stringValue;<br>
|
||||
- (BOOL) <b>scanCharactersFromSet:</b> (NSCharacterSet*)set <b>intoString:</b> (NSString**)stringValue;<br>
|
||||
|
||||
After initial skipping (if any), this method scans any characters
|
||||
from <em>set</em>, terminating when a character not in the set
|
||||
|
@ -253,7 +253,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-15">scanString:intoString:</a></h3>
|
||||
- (BOOL) <b>scanString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString <b>intoString:</b> (<A HREF="NSString.html#NSString">NSString</A>**)stringValue;<br>
|
||||
- (BOOL) <b>scanString:</b> (NSString*)aString <b>intoString:</b> (NSString**)stringValue;<br>
|
||||
|
||||
After initial skipping (if any), this method scans for
|
||||
<em>aString</em> and places the string ound in <em>stringValue</em>
|
||||
|
@ -263,7 +263,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-16">scanUpToCharactersFromSet:intoString:</a></h3>
|
||||
- (BOOL) <b>scanUpToCharactersFromSet:</b> (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*)set <b>intoString:</b> (<A HREF="NSString.html#NSString">NSString</A>**)stringValue;<br>
|
||||
- (BOOL) <b>scanUpToCharactersFromSet:</b> (NSCharacterSet*)set <b>intoString:</b> (NSString**)stringValue;<br>
|
||||
|
||||
After initial skipping (if any), this method scans characters until
|
||||
it finds one in <em>set</em>. The scanned characters are placed in
|
||||
|
@ -273,7 +273,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-17">scanUpToString:intoString:</a></h3>
|
||||
- (BOOL) <b>scanUpToString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString <b>intoString:</b> (<A HREF="NSString.html#NSString">NSString</A>**)stringValue;<br>
|
||||
- (BOOL) <b>scanUpToString:</b> (NSString*)aString <b>intoString:</b> (NSString**)stringValue;<br>
|
||||
|
||||
After initial skipping (if any), this method scans characters until
|
||||
it finds <em>aString</em>. The scanned characters are placed in
|
||||
|
@ -296,7 +296,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-19">setCharactersToBeSkipped:</a></h3>
|
||||
- (void) <b>setCharactersToBeSkipped:</b> (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*)skipSet;<br>
|
||||
- (void) <b>setCharactersToBeSkipped:</b> (NSCharacterSet*)skipSet;<br>
|
||||
|
||||
Sets the set of characters that the scanner will skip over at the
|
||||
start of each scanning operation to be <em>skipSet</em>.
|
||||
|
@ -308,7 +308,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="setLocale:">setLocale:</a></h3>
|
||||
- (void) <b>setLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)aLocale;<br>
|
||||
- (void) <b>setLocale:</b> (NSDictionary*)aLocale;<br>
|
||||
|
||||
This method sets the locale used by the scanner to <em>aLocale</em>.
|
||||
The locale may be set to nil.
|
||||
|
@ -324,7 +324,7 @@ Standards: GNUstep NotOpenStep NotMacOS-X<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-21">string</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>string</b>;<br>
|
||||
- (NSString*) <b>string</b>;<br>
|
||||
|
||||
Returns the string used by the scanner.
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSSerializer</a></h2>
|
||||
<h2><a name ="NSSerializer">NSSerializer</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSSerialization.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSSet</a></h2>
|
||||
<h2><a name ="NSSet">NSSet</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSSet.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -67,7 +67,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">setWithArray:</a></h3>
|
||||
+ (id) <b>setWithArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)anArray;<br>
|
||||
+ (id) <b>setWithArray:</b> (NSArray*)anArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -87,13 +87,13 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">setWithArray:</a></h3>
|
||||
+ (id) <b>setWithArray:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)aSet;<br>
|
||||
+ (id) <b>setWithArray:</b> (NSSet*)aSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-7">allObjects</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>allObjects</b>;<br>
|
||||
- (NSArray*) <b>allObjects</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -113,17 +113,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-11">description</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
- (NSString*) <b>description</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">descriptionWithLocale:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>descriptionWithLocale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)locale;<br>
|
||||
- (NSString*) <b>descriptionWithLocale:</b> (NSDictionary*)locale;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">initWithArray:</a></h3>
|
||||
- (id) <b>initWithArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)array;<br>
|
||||
- (id) <b>initWithArray:</b> (NSArray*)array;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -138,27 +138,27 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-16">initWithSet:</a></h3>
|
||||
- (id) <b>initWithSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)otherSet;<br>
|
||||
- (id) <b>initWithSet:</b> (NSSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">initWithSet:copyItems:</a></h3>
|
||||
- (id) <b>initWithSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)otherSet <b>copyItems:</b> (BOOL)flag;<br>
|
||||
- (id) <b>initWithSet:</b> (NSSet*)otherSet <b>copyItems:</b> (BOOL)flag;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">intersectsSet:</a></h3>
|
||||
- (BOOL) <b>intersectsSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)otherSet;<br>
|
||||
- (BOOL) <b>intersectsSet:</b> (NSSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-19">isEqualToSet:</a></h3>
|
||||
- (BOOL) <b>isEqualToSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)otherSet;<br>
|
||||
- (BOOL) <b>isEqualToSet:</b> (NSSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-20">isSubsetOfSet:</a></h3>
|
||||
- (BOOL) <b>isSubsetOfSet:</b> (<A HREF="NSSet.html#NSSet">NSSet</A>*)otherSet;<br>
|
||||
- (BOOL) <b>isSubsetOfSet:</b> (NSSet*)otherSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -188,7 +188,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-26">objectEnumerator</a></h3>
|
||||
- (<A HREF="NSEnumerator.html#NSEnumerator">NSEnumerator</A>*) <b>objectEnumerator</b>;<br>
|
||||
- (NSEnumerator*) <b>objectEnumerator</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<h2><a name ="cont-0">NSString</a></h2>
|
||||
<h2><a name ="NSString">NSString</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSString.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -147,7 +147,7 @@ Returns the encoding used for any method accepting a C string.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-2">localizedNameOfStringEncoding:</a></h3>
|
||||
+ (<A HREF="NSString.html#NSString">NSString</A>*) <b>localizedNameOfStringEncoding:</b> (NSStringEncoding)encoding;<br>
|
||||
+ (NSString*) <b>localizedNameOfStringEncoding:</b> (NSStringEncoding)encoding;<br>
|
||||
|
||||
<p>
|
||||
Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
||||
|
@ -155,12 +155,12 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-3">localizedStringWithFormat:</a></h3>
|
||||
+ (<A HREF="NSString.html#NSString">NSString</A>*) <b>localizedStringWithFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format,;<br>
|
||||
+ (NSString*) <b>localizedStringWithFormat:</b> (NSString*)format,;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">pathWithComponents:</a></h3>
|
||||
+ (<A HREF="NSString.html#NSString">NSString</A>*) <b>pathWithComponents:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)components;<br>
|
||||
+ (NSString*) <b>pathWithComponents:</b> (NSArray*)components;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -175,7 +175,7 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-7">stringWithContentsOfFile:</a></h3>
|
||||
+ (id) <b>stringWithContentsOfFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
+ (id) <b>stringWithContentsOfFile:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -190,12 +190,12 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-10">stringWithFormat:</a></h3>
|
||||
+ (id) <b>stringWithFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format,;<br>
|
||||
+ (id) <b>stringWithFormat:</b> (NSString*)format,;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">stringWithString:</a></h3>
|
||||
+ (id) <b>stringWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
+ (id) <b>stringWithString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -216,12 +216,12 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-13">capitalizedString</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>capitalizedString</b>;<br>
|
||||
- (NSString*) <b>capitalizedString</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">caseInsensitiveCompare:</a></h3>
|
||||
- (NSComparisonResult) <b>caseInsensitiveCompare:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (NSComparisonResult) <b>caseInsensitiveCompare:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -231,32 +231,32 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-16">commonPrefixWithString:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>commonPrefixWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (NSString*) <b>commonPrefixWithString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">compare:</a></h3>
|
||||
- (NSComparisonResult) <b>compare:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (NSComparisonResult) <b>compare:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">compare:</a></h3>
|
||||
- (NSComparisonResult) <b>compare:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (NSComparisonResult) <b>compare:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-19">compare:options:range:</a></h3>
|
||||
- (NSComparisonResult) <b>compare:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString <b>options:</b> (unsigned int)mask <b>range:</b> (NSRange)aRange;<br>
|
||||
- (NSComparisonResult) <b>compare:</b> (NSString*)aString <b>options:</b> (unsigned int)mask <b>range:</b> (NSRange)aRange;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-20">completePathIntoString:caseSensitive:matchesIntoArray:</a></h3>
|
||||
- (unsigned int) <b>completePathIntoString:</b> (<A HREF="NSString.html#NSString">NSString</A>**)outputName <b>caseSensitive:</b> (BOOL)flag <b>matchesIntoArray:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>**)outputArray;<br>
|
||||
- (unsigned int) <b>completePathIntoString:</b> (NSString**)outputName <b>caseSensitive:</b> (BOOL)flag <b>matchesIntoArray:</b> (NSArray**)outputArray;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-21">componentsSeparatedByString:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>componentsSeparatedByString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)separator;<br>
|
||||
- (NSArray*) <b>componentsSeparatedByString:</b> (NSString*)separator;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -281,7 +281,7 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-26">description</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
- (NSString*) <b>description</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -341,12 +341,12 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-39">hasPrefix:</a></h3>
|
||||
- (BOOL) <b>hasPrefix:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (BOOL) <b>hasPrefix:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-40">hasSuffix:</a></h3>
|
||||
- (BOOL) <b>hasSuffix:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (BOOL) <b>hasSuffix:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -366,7 +366,7 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-44">initWithContentsOfFile:</a></h3>
|
||||
- (id) <b>initWithContentsOfFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (id) <b>initWithContentsOfFile:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -391,27 +391,27 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-49">initWithFormat:</a></h3>
|
||||
- (id) <b>initWithFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format,;<br>
|
||||
- (id) <b>initWithFormat:</b> (NSString*)format,;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-50">initWithFormat:arguments:</a></h3>
|
||||
- (id) <b>initWithFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format <b>arguments:</b> (va_list)argList;<br>
|
||||
- (id) <b>initWithFormat:</b> (NSString*)format <b>arguments:</b> (va_list)argList;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-51">initWithFormat:</a></h3>
|
||||
- (id) <b>initWithFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format;<br>
|
||||
- (id) <b>initWithFormat:</b> (NSString*)format;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-52">initWithFormat:locale:arguments:</a></h3>
|
||||
- (id) <b>initWithFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format <b>locale:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)dictionary <b>arguments:</b> (va_list)argList;<br>
|
||||
- (id) <b>initWithFormat:</b> (NSString*)format <b>locale:</b> (NSDictionary*)dictionary <b>arguments:</b> (va_list)argList;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-53">initWithString:</a></h3>
|
||||
- (id) <b>initWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (id) <b>initWithString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -426,12 +426,12 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-56">isEqualToString:</a></h3>
|
||||
- (BOOL) <b>isEqualToString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (BOOL) <b>isEqualToString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-57">lastPathComponent</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>lastPathComponent</b>;<br>
|
||||
- (NSString*) <b>lastPathComponent</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -446,17 +446,17 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-61">lowercaseString</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>lowercaseString</b>;<br>
|
||||
- (NSString*) <b>lowercaseString</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-62">pathComponents</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>pathComponents</b>;<br>
|
||||
- (NSArray*) <b>pathComponents</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-63">pathExtension</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>pathExtension</b>;<br>
|
||||
- (NSString*) <b>pathExtension</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -466,22 +466,22 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-65">propertyListFromStringsFileFormat</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>propertyListFromStringsFileFormat</b>;<br>
|
||||
- (NSDictionary*) <b>propertyListFromStringsFileFormat</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-66">rangeOfCharacterFromSet:</a></h3>
|
||||
- (NSRange) <b>rangeOfCharacterFromSet:</b> (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*)aSet;<br>
|
||||
- (NSRange) <b>rangeOfCharacterFromSet:</b> (NSCharacterSet*)aSet;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-67">rangeOfCharacterFromSet:options:</a></h3>
|
||||
- (NSRange) <b>rangeOfCharacterFromSet:</b> (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*)aSet <b>options:</b> (unsigned int)mask;<br>
|
||||
- (NSRange) <b>rangeOfCharacterFromSet:</b> (NSCharacterSet*)aSet <b>options:</b> (unsigned int)mask;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-68">rangeOfCharacterFromSet:options:range:</a></h3>
|
||||
- (NSRange) <b>rangeOfCharacterFromSet:</b> (<A HREF="NSCharacterSet.html#NSCharacterSet">NSCharacterSet</A>*)aSet <b>options:</b> (unsigned int)mask <b>range:</b> (NSRange)aRange;<br>
|
||||
- (NSRange) <b>rangeOfCharacterFromSet:</b> (NSCharacterSet*)aSet <b>options:</b> (unsigned int)mask <b>range:</b> (NSRange)aRange;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -491,21 +491,21 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-70">rangeOfString:</a></h3>
|
||||
- (NSRange) <b>rangeOfString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (NSRange) <b>rangeOfString:</b> (NSString*)aString;<br>
|
||||
|
||||
Invokes <em>rangeOfString:options:</em> with the options mask
|
||||
set to zero.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-71">rangeOfString:options:</a></h3>
|
||||
- (NSRange) <b>rangeOfString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString <b>options:</b> (unsigned int)mask;<br>
|
||||
- (NSRange) <b>rangeOfString:</b> (NSString*)aString <b>options:</b> (unsigned int)mask;<br>
|
||||
|
||||
Invokes <em>rangeOfString:options:range</em> with the range set
|
||||
set to the range of the whole of the reciever.
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-72">rangeOfString:options:range:</a></h3>
|
||||
- (NSRange) <b>rangeOfString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)subString <b>options:</b> (unsigned int)mask <b>range:</b> (NSRange)aRange;<br>
|
||||
- (NSRange) <b>rangeOfString:</b> (NSString*)subString <b>options:</b> (unsigned int)mask <b>range:</b> (NSRange)aRange;<br>
|
||||
|
||||
Returns the range giving the location and length of the first
|
||||
occurrence of <em>subString</em> within <em>aRange</em>.
|
||||
|
@ -535,47 +535,47 @@ Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-74">stringByAbbreviatingWithTildeInPath</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringByAbbreviatingWithTildeInPath</b>;<br>
|
||||
- (NSString*) <b>stringByAbbreviatingWithTildeInPath</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-75">stringByAppendingFormat:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringByAppendingFormat:</b> (<A HREF="NSString.html#NSString">NSString</A>*)format,;<br>
|
||||
- (NSString*) <b>stringByAppendingFormat:</b> (NSString*)format,;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-76">stringByAppendingPathComponent:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringByAppendingPathComponent:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (NSString*) <b>stringByAppendingPathComponent:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-77">stringByAppendingPathExtension:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringByAppendingPathExtension:</b> (<A HREF="NSString.html#NSString">NSString</A>*)string;<br>
|
||||
- (NSString*) <b>stringByAppendingPathExtension:</b> (NSString*)string;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-78">stringByAppendingString:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringByAppendingString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString;<br>
|
||||
- (NSString*) <b>stringByAppendingString:</b> (NSString*)aString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-79">stringByDeletingLastPathComponent</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringByDeletingLastPathComponent</b>;<br>
|
||||
- (NSString*) <b>stringByDeletingLastPathComponent</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-80">stringByDeletingPathExtension</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringByDeletingPathExtension</b>;<br>
|
||||
- (NSString*) <b>stringByDeletingPathExtension</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-81">stringByExpandingTildeInPath</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringByExpandingTildeInPath</b>;<br>
|
||||
- (NSString*) <b>stringByExpandingTildeInPath</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-82">stringByReplacingString:withString:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringByReplacingString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aString <b>withString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)replacement;<br>
|
||||
- (NSString*) <b>stringByReplacingString:</b> (NSString*)aString <b>withString:</b> (NSString*)replacement;<br>
|
||||
Standards: GNUstep NotMacOS-X NotOpenStep<br>
|
||||
|
||||
Returns a string in which any (and all) occurrances of
|
||||
|
@ -586,32 +586,32 @@ Standards: GNUstep NotMacOS-X NotOpenStep<br>
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-83">stringsByAppendingPaths:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>stringsByAppendingPaths:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)paths;<br>
|
||||
- (NSArray*) <b>stringsByAppendingPaths:</b> (NSArray*)paths;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-84">substringFromIndex:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>substringFromIndex:</b> (unsigned int)anIndex;<br>
|
||||
- (NSString*) <b>substringFromIndex:</b> (unsigned int)anIndex;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-85">substringToIndex:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>substringToIndex:</b> (unsigned int)anIndex;<br>
|
||||
- (NSString*) <b>substringToIndex:</b> (unsigned int)anIndex;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-86">substringWithRange:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>substringWithRange:</b> (NSRange)aRange;<br>
|
||||
- (NSString*) <b>substringWithRange:</b> (NSRange)aRange;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-87">uppercaseString</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>uppercaseString</b>;<br>
|
||||
- (NSString*) <b>uppercaseString</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-88">writeToFile:atomically:</a></h3>
|
||||
- (BOOL) <b>writeToFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>atomically:</b> (BOOL)flag;<br>
|
||||
- (BOOL) <b>writeToFile:</b> (NSString*)path <b>atomically:</b> (BOOL)flag;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSTask</a></h2>
|
||||
<h2><a name ="NSTask">NSTask</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSTask.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -52,23 +52,23 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">launchedTaskWithLaunchPath:arguments:</a></h3>
|
||||
+ (<A HREF="NSTask.html#NSTask">NSTask</A>*) <b>launchedTaskWithLaunchPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path <b>arguments:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)arguments;<br>
|
||||
+ (NSTask*) <b>launchedTaskWithLaunchPath:</b> (NSString*)path <b>arguments:</b> (NSArray*)arguments;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">arguments</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>arguments</b>;<br>
|
||||
- (NSArray*) <b>arguments</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">currentDirectoryPath</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>currentDirectoryPath</b>;<br>
|
||||
- (NSString*) <b>currentDirectoryPath</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">environment</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>environment</b>;<br>
|
||||
- (NSDictionary*) <b>environment</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -93,27 +93,27 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-8">launchPath</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>launchPath</b>;<br>
|
||||
- (NSString*) <b>launchPath</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">setArguments:</a></h3>
|
||||
- (void) <b>setArguments:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)arguments;<br>
|
||||
- (void) <b>setArguments:</b> (NSArray*)arguments;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">setCurrentDirectoryPath:</a></h3>
|
||||
- (void) <b>setCurrentDirectoryPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (void) <b>setCurrentDirectoryPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">setEnvironment:</a></h3>
|
||||
- (void) <b>setEnvironment:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)environmentDictionary;<br>
|
||||
- (void) <b>setEnvironment:</b> (NSDictionary*)environmentDictionary;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">setLaunchPath:</a></h3>
|
||||
- (void) <b>setLaunchPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
- (void) <b>setLaunchPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSThread</a></h2>
|
||||
<h2><a name ="NSThread">NSThread</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSThread.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -36,7 +36,7 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">currentThread</a></h3>
|
||||
+ (<A HREF="NSThread.html#NSThread">NSThread</A>*) <b>currentThread</b>;<br>
|
||||
+ (NSThread*) <b>currentThread</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -56,13 +56,13 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-4">sleepUntilDate:</a></h3>
|
||||
+ (void) <b>sleepUntilDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)aDate;<br>
|
||||
+ (void) <b>sleepUntilDate:</b> (NSDate*)aDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-5">threadDictionary</a></h3>
|
||||
- (<A HREF="NSMutableDictionary.html#NSMutableDictionary">NSMutableDictionary</A>*) <b>threadDictionary</b>;<br>
|
||||
- (NSMutableDictionary*) <b>threadDictionary</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSTimeZone</a></h2>
|
||||
<h2><a name ="NSTimeZone">NSTimeZone</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSTimeZone.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -53,22 +53,22 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">abbreviationDictionary</a></h3>
|
||||
+ (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>abbreviationDictionary</b>;<br>
|
||||
+ (NSDictionary*) <b>abbreviationDictionary</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">defaultTimeZone</a></h3>
|
||||
+ (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*) <b>defaultTimeZone</b>;<br>
|
||||
+ (NSTimeZone*) <b>defaultTimeZone</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">localTimeZone</a></h3>
|
||||
+ (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*) <b>localTimeZone</b>;<br>
|
||||
+ (NSTimeZone*) <b>localTimeZone</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">knownTimeZoneNames</a></h3>
|
||||
+ (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>knownTimeZoneNames</b>;<br>
|
||||
+ (NSArray*) <b>knownTimeZoneNames</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -78,43 +78,43 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">setDefaultTimeZone:</a></h3>
|
||||
+ (void) <b>setDefaultTimeZone:</b> (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*)aTimeZone;<br>
|
||||
+ (void) <b>setDefaultTimeZone:</b> (NSTimeZone*)aTimeZone;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">systemTimeZone</a></h3>
|
||||
+ (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*) <b>systemTimeZone</b>;<br>
|
||||
+ (NSTimeZone*) <b>systemTimeZone</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">timeZoneForSecondsFromGMT:</a></h3>
|
||||
+ (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*) <b>timeZoneForSecondsFromGMT:</b> (int)seconds;<br>
|
||||
+ (NSTimeZone*) <b>timeZoneForSecondsFromGMT:</b> (int)seconds;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">timeZoneWithAbbreviation:</a></h3>
|
||||
+ (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*) <b>timeZoneWithAbbreviation:</b> (<A HREF="NSString.html#NSString">NSString</A>*)abbreviation;<br>
|
||||
+ (NSTimeZone*) <b>timeZoneWithAbbreviation:</b> (NSString*)abbreviation;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">timeZoneWithName:</a></h3>
|
||||
+ (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*) <b>timeZoneWithName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aTimeZoneName;<br>
|
||||
+ (NSTimeZone*) <b>timeZoneWithName:</b> (NSString*)aTimeZoneName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">timeZoneWithName:</a></h3>
|
||||
+ (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*) <b>timeZoneWithName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aTimeZoneName;<br>
|
||||
+ (NSTimeZone*) <b>timeZoneWithName:</b> (NSString*)aTimeZoneName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-11">abbreviation</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>abbreviation</b>;<br>
|
||||
- (NSString*) <b>abbreviation</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">abbreviationForDate:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>abbreviationForDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)aDate;<br>
|
||||
- (NSString*) <b>abbreviationForDate:</b> (NSDate*)aDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -124,17 +124,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-14">description</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>description</b>;<br>
|
||||
- (NSString*) <b>description</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-15">initWithName:</a></h3>
|
||||
- (id) <b>initWithName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aName;<br>
|
||||
- (id) <b>initWithName:</b> (NSString*)aName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-16">initWithName:</a></h3>
|
||||
- (id) <b>initWithName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)aName;<br>
|
||||
- (id) <b>initWithName:</b> (NSString*)aName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -144,17 +144,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-18">isDaylightSavingTimeForDate:</a></h3>
|
||||
- (BOOL) <b>isDaylightSavingTimeForDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)aDate;<br>
|
||||
- (BOOL) <b>isDaylightSavingTimeForDate:</b> (NSDate*)aDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-19">isEqualToTimeZone:</a></h3>
|
||||
- (BOOL) <b>isEqualToTimeZone:</b> (<A HREF="NSTimeZone.html#NSTimeZone">NSTimeZone</A>*)aTimeZone;<br>
|
||||
- (BOOL) <b>isEqualToTimeZone:</b> (NSTimeZone*)aTimeZone;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-20">name</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>name</b>;<br>
|
||||
- (NSString*) <b>name</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -164,7 +164,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-22">secondsFromGMTForDate:</a></h3>
|
||||
- (int) <b>secondsFromGMTForDate:</b> (<A HREF="NSDate.html#NSDate">NSDate</A>*)aDate;<br>
|
||||
- (int) <b>secondsFromGMTForDate:</b> (NSDate*)aDate;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSTimer</a></h2>
|
||||
<h2><a name ="NSTimer">NSTimer</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSTimer.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -40,22 +40,22 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">scheduledTimerWithTimeInterval:invocation:</a></h3>
|
||||
+ (<A HREF="NSTimer.html#NSTimer">NSTimer</A>*) <b>scheduledTimerWithTimeInterval:</b> (NSTimeInterval)seconds <b>invocation:</b> (<A HREF="NSInvocation.html#NSInvocation">NSInvocation</A>*)invocation;<br>
|
||||
+ (NSTimer*) <b>scheduledTimerWithTimeInterval:</b> (NSTimeInterval)seconds <b>invocation:</b> (NSInvocation*)invocation;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:</a></h3>
|
||||
+ (<A HREF="NSTimer.html#NSTimer">NSTimer</A>*) <b>scheduledTimerWithTimeInterval:</b> (NSTimeInterval)seconds <b>target:</b> (id)target <b>selector:</b> (SEL)aSelector <b>userInfo:</b> (id)userInfo <b>repeats:</b> (BOOL)repeats;<br>
|
||||
+ (NSTimer*) <b>scheduledTimerWithTimeInterval:</b> (NSTimeInterval)seconds <b>target:</b> (id)target <b>selector:</b> (SEL)aSelector <b>userInfo:</b> (id)userInfo <b>repeats:</b> (BOOL)repeats;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">timerWithTimeInterval:invocation:</a></h3>
|
||||
+ (<A HREF="NSTimer.html#NSTimer">NSTimer</A>*) <b>timerWithTimeInterval:</b> (NSTimeInterval)seconds <b>invocation:</b> (<A HREF="NSInvocation.html#NSInvocation">NSInvocation</A>*)invocation;<br>
|
||||
+ (NSTimer*) <b>timerWithTimeInterval:</b> (NSTimeInterval)seconds <b>invocation:</b> (NSInvocation*)invocation;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">timerWithTimeInterval:target:selector:userInfo:repeats:</a></h3>
|
||||
+ (<A HREF="NSTimer.html#NSTimer">NSTimer</A>*) <b>timerWithTimeInterval:</b> (NSTimeInterval)seconds <b>target:</b> (id)target <b>selector:</b> (SEL)aSelector <b>userInfo:</b> (id)userInfo <b>repeats:</b> (BOOL)repeats;<br>
|
||||
+ (NSTimer*) <b>timerWithTimeInterval:</b> (NSTimeInterval)seconds <b>target:</b> (id)target <b>selector:</b> (SEL)aSelector <b>userInfo:</b> (id)userInfo <b>repeats:</b> (BOOL)repeats;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -66,7 +66,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-5">fireDate</a></h3>
|
||||
- (<A HREF="NSDate.html#NSDate">NSDate</A>*) <b>fireDate</b>;<br>
|
||||
- (NSDate*) <b>fireDate</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -22,22 +22,29 @@
|
|||
<sel>URLWithString:</sel>
|
||||
<arg type="NSString*">URLString</arg>
|
||||
<desc>
|
||||
Initializes with a string as specified in RFCs 1738 and 1808
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="id" factory="yes">
|
||||
<sel>URLWithString:</sel>
|
||||
<arg type="NSString*">URLString</arg>
|
||||
<sel>relativeToURL:</sel>
|
||||
<arg type="NSURL*">baseURL</arg>
|
||||
<desc>
|
||||
Initializes relative to a base URL, with a string as
|
||||
specified in RFCs 1738 and 1808
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="id" factory="yes">
|
||||
<sel>fileURLWithPath:</sel>
|
||||
<arg type="NSString*">path</arg>
|
||||
<desc>
|
||||
Initializes as a file schem URL with the specified path.
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>loadResourceDataNotifyingClient:</sel>
|
||||
<arg type="id">client</arg>
|
||||
|
@ -46,80 +53,95 @@
|
|||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>parameterString</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>password</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>path</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSNumber*">
|
||||
<sel>port</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="id">
|
||||
<sel>propertyForKey:</sel>
|
||||
<arg type="NSString*">propertyKey</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>query</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>relativePath</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>relativeString</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSData*">
|
||||
<sel>resourceDataUsingCache:</sel>
|
||||
<arg type="BOOL">shouldUseCache</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>resourceSpecifier</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>scheme</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="BOOL">
|
||||
<sel>setProperty:</sel>
|
||||
<arg type="id">property</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="BOOL">
|
||||
<sel>setResourceData:</sel>
|
||||
<arg type="NSData*">data</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSURL*">
|
||||
<sel>standardizedURL</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>user</sel>
|
||||
<desc>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSURL</a></h2>
|
||||
<h2><a name ="NSURL">NSURL</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSURL.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -49,17 +49,17 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">URLWithString:</a></h3>
|
||||
+ (id) <b>URLWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)URLString;<br>
|
||||
+ (id) <b>URLWithString:</b> (NSString*)URLString;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">URLWithString:relativeToURL:</a></h3>
|
||||
+ (id) <b>URLWithString:</b> (<A HREF="NSString.html#NSString">NSString</A>*)URLString <b>relativeToURL:</b> (<A HREF="NSURL.html#NSURL">NSURL</A>*)baseURL;<br>
|
||||
+ (id) <b>URLWithString:</b> (NSString*)URLString <b>relativeToURL:</b> (NSURL*)baseURL;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">fileURLWithPath:</a></h3>
|
||||
+ (id) <b>fileURLWithPath:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
+ (id) <b>fileURLWithPath:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -70,42 +70,42 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-4">parameterString</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>parameterString</b>;<br>
|
||||
- (NSString*) <b>parameterString</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">password</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>password</b>;<br>
|
||||
- (NSString*) <b>password</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">path</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>path</b>;<br>
|
||||
- (NSString*) <b>path</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-7">port</a></h3>
|
||||
- (<A HREF="NSNumber.html#NSNumber">NSNumber</A>*) <b>port</b>;<br>
|
||||
- (NSNumber*) <b>port</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-8">propertyForKey:</a></h3>
|
||||
- (id) <b>propertyForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)propertyKey;<br>
|
||||
- (id) <b>propertyForKey:</b> (NSString*)propertyKey;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">query</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>query</b>;<br>
|
||||
- (NSString*) <b>query</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">relativePath</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>relativePath</b>;<br>
|
||||
- (NSString*) <b>relativePath</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">relativeString</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>relativeString</b>;<br>
|
||||
- (NSString*) <b>relativeString</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -115,12 +115,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-13">resourceSpecifier</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>resourceSpecifier</b>;<br>
|
||||
- (NSString*) <b>resourceSpecifier</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">scheme</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>scheme</b>;<br>
|
||||
- (NSString*) <b>scheme</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -135,12 +135,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-17">standardizedURL</a></h3>
|
||||
- (<A HREF="NSURL.html#NSURL">NSURL</A>*) <b>standardizedURL</b>;<br>
|
||||
- (NSURL*) <b>standardizedURL</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">user</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>user</b>;<br>
|
||||
- (NSString*) <b>user</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -17,57 +17,73 @@
|
|||
<declared>Foundation/NSURLHandle.h</declared>
|
||||
<desc>
|
||||
</desc>
|
||||
|
||||
<method type="Class" factory="yes">
|
||||
<sel>URLHandleClassForURL:</sel>
|
||||
<arg type="NSURL*">anURL</arg>
|
||||
<desc>
|
||||
Returns the most recently registered NSURLHandle subclass that
|
||||
responds to <code>canInitWithURL:</code> with <code>YES</code>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSURLHandle*" factory="yes">
|
||||
<sel>cachedHandleForURL:</sel>
|
||||
<arg type="NSURL*">anURL</arg>
|
||||
<desc>
|
||||
Returns a previously created object that handles the specified
|
||||
URL (if any exists).
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="BOOL" factory="yes">
|
||||
<sel>canInitWithURL:</sel>
|
||||
<arg type="NSURL*">anURL</arg>
|
||||
<desc>
|
||||
Implemented by subclasses to say which URLs they can handle.
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void" factory="yes">
|
||||
<sel>registerURLHandleClass:</sel>
|
||||
<arg type="Class">anURLHandleSubclass</arg>
|
||||
<desc>
|
||||
Used to register a subclass as being available to handle URLs.
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>addClient:</sel>
|
||||
<arg type="id<NSURLHandleClient>">client</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSData*">
|
||||
<sel>availableResourceData</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>backgroundLoadDidFailWithReason:</sel>
|
||||
<arg type="NSString*">reason</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>beginLoadInBackground</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>cancelLoadInBackground</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>didLoadBytes:</sel>
|
||||
<arg type="NSData*">newBytes</arg>
|
||||
|
@ -76,65 +92,77 @@
|
|||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>endLoadInBackground</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSString*">
|
||||
<sel>failureReason</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>flushCachedData</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>loadInBackground</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSData*">
|
||||
<sel>loadInForeground</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="id">
|
||||
<sel>propertyForKey:</sel>
|
||||
<arg type="NSString*">propertyKey</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="id">
|
||||
<sel>propertyForKeyIfAvailable:</sel>
|
||||
<arg type="NSString*">propertyKey</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="void">
|
||||
<sel>removeClient:</sel>
|
||||
<arg type="id<NSURLHandleClient>">client</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSData*">
|
||||
<sel>resourceData</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="NSURLHandleStatus">
|
||||
<sel>status</sel>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="BOOL">
|
||||
<sel>writeData:</sel>
|
||||
<arg type="NSData*">data</arg>
|
||||
<desc>
|
||||
</desc>
|
||||
</method>
|
||||
|
||||
<method type="BOOL">
|
||||
<sel>writeProperty:</sel>
|
||||
<arg type="id">propertyValue</arg>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSURLHandle</a></h2>
|
||||
<h2><a name ="NSURLHandle">NSURLHandle</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSURLHandle.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<hr>
|
||||
|
||||
|
||||
|
@ -50,17 +50,17 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">URLHandleClassForURL:</a></h3>
|
||||
+ (Class) <b>URLHandleClassForURL:</b> (<A HREF="NSURL.html#NSURL">NSURL</A>*)anURL;<br>
|
||||
+ (Class) <b>URLHandleClassForURL:</b> (NSURL*)anURL;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">cachedHandleForURL:</a></h3>
|
||||
+ (<A HREF="NSURLHandle.html#NSURLHandle">NSURLHandle</A>*) <b>cachedHandleForURL:</b> (<A HREF="NSURL.html#NSURL">NSURL</A>*)anURL;<br>
|
||||
+ (NSURLHandle*) <b>cachedHandleForURL:</b> (NSURL*)anURL;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">canInitWithURL:</a></h3>
|
||||
+ (BOOL) <b>canInitWithURL:</b> (<A HREF="NSURL.html#NSURL">NSURL</A>*)anURL;<br>
|
||||
+ (BOOL) <b>canInitWithURL:</b> (NSURL*)anURL;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -81,7 +81,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">backgroundLoadDidFailWithReason:</a></h3>
|
||||
- (void) <b>backgroundLoadDidFailWithReason:</b> (<A HREF="NSString.html#NSString">NSString</A>*)reason;<br>
|
||||
- (void) <b>backgroundLoadDidFailWithReason:</b> (NSString*)reason;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -106,7 +106,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-11">failureReason</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>failureReason</b>;<br>
|
||||
- (NSString*) <b>failureReason</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -126,12 +126,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-15">propertyForKey:</a></h3>
|
||||
- (id) <b>propertyForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)propertyKey;<br>
|
||||
- (id) <b>propertyForKey:</b> (NSString*)propertyKey;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-16">propertyForKeyIfAvailable:</a></h3>
|
||||
- (id) <b>propertyForKeyIfAvailable:</b> (<A HREF="NSString.html#NSString">NSString</A>*)propertyKey;<br>
|
||||
- (id) <b>propertyForKeyIfAvailable:</b> (NSString*)propertyKey;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSUnarchiver</a></h2>
|
||||
<h2><a name ="NSUnarchiver">NSUnarchiver</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSArchiver.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSCoder.html#NSCoder">NSCoder</A></p>
|
||||
<p><b>Inherits from: </b> NSCoder</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -42,12 +42,12 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">classNameDecodedForArchiveClassName:</a></h3>
|
||||
+ (<A HREF="NSString.html#NSString">NSString</A>*) <b>classNameDecodedForArchiveClassName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)nameInArchive;<br>
|
||||
+ (NSString*) <b>classNameDecodedForArchiveClassName:</b> (NSString*)nameInArchive;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">decodeClassName:</a></h3>
|
||||
+ (void) <b>decodeClassName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)nameInArchive;<br>
|
||||
+ (void) <b>decodeClassName:</b> (NSString*)nameInArchive;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -57,18 +57,18 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-3">unarchiveObjectWithFile:</a></h3>
|
||||
+ (id) <b>unarchiveObjectWithFile:</b> (<A HREF="NSString.html#NSString">NSString</A>*)path;<br>
|
||||
+ (id) <b>unarchiveObjectWithFile:</b> (NSString*)path;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-4">classNameDecodedForArchiveClassName:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>classNameDecodedForArchiveClassName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)nameInArchive;<br>
|
||||
- (NSString*) <b>classNameDecodedForArchiveClassName:</b> (NSString*)nameInArchive;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">decodeClassName:</a></h3>
|
||||
- (void) <b>decodeClassName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)nameInArchive;<br>
|
||||
- (void) <b>decodeClassName:</b> (NSString*)nameInArchive;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSUndoManager</a></h2>
|
||||
<h2><a name ="NSUndoManager">NSUndoManager</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSUndoManager.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -91,7 +91,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-6">forwardInvocation:</a></h3>
|
||||
- (void) <b>forwardInvocation:</b> (<A HREF="NSInvocation.html#NSInvocation">NSInvocation</A>*)anInvocation;<br>
|
||||
- (void) <b>forwardInvocation:</b> (NSInvocation*)anInvocation;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -136,17 +136,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-15">redoActionName</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>redoActionName</b>;<br>
|
||||
- (NSString*) <b>redoActionName</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-16">redoMenuItemTitle</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>redoMenuItemTitle</b>;<br>
|
||||
- (NSString*) <b>redoMenuItemTitle</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">redoMenuTitleForUndoActionName:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>redoMenuTitleForUndoActionName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)actionName;<br>
|
||||
- (NSString*) <b>redoMenuTitleForUndoActionName:</b> (NSString*)actionName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -166,12 +166,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-21">runLoopModes</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>runLoopModes</b>;<br>
|
||||
- (NSArray*) <b>runLoopModes</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-22">setActionName:</a></h3>
|
||||
- (void) <b>setActionName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)actionName;<br>
|
||||
- (void) <b>setActionName:</b> (NSString*)actionName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -186,7 +186,7 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-25">setRunLoopModes:</a></h3>
|
||||
- (void) <b>setRunLoopModes:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)modes;<br>
|
||||
- (void) <b>setRunLoopModes:</b> (NSArray*)modes;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -196,17 +196,17 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-27">undoActionName</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>undoActionName</b>;<br>
|
||||
- (NSString*) <b>undoActionName</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-28">undoMenuItemTitle</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>undoMenuItemTitle</b>;<br>
|
||||
- (NSString*) <b>undoMenuItemTitle</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-29">undoMenuTitleForUndoActionName:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>undoMenuTitleForUndoActionName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)actionName;<br>
|
||||
- (NSString*) <b>undoMenuTitleForUndoActionName:</b> (NSString*)actionName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h2><a name ="cont-0">NSUserDefaults</a></h2>
|
||||
<h2><a name ="NSUserDefaults">NSUserDefaults</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSUserDefaults.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSObject
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -60,38 +60,38 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">standardUserDefaults</a></h3>
|
||||
+ (<A HREF="NSUserDefaults.html#NSUserDefaults">NSUserDefaults</A>*) <b>standardUserDefaults</b>;<br>
|
||||
+ (NSUserDefaults*) <b>standardUserDefaults</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<hr><h2>Instances Methods </h2>
|
||||
<h3><a name ="method-1">arrayForKey:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>arrayForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (NSArray*) <b>arrayForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">boolForKey:</a></h3>
|
||||
- (BOOL) <b>boolForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (BOOL) <b>boolForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">dataForKey:</a></h3>
|
||||
- (NSData*) <b>dataForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (NSData*) <b>dataForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">dictionaryForKey:</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>dictionaryForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (NSDictionary*) <b>dictionaryForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">dictionaryRepresentation</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>dictionaryRepresentation</b>;<br>
|
||||
- (NSDictionary*) <b>dictionaryRepresentation</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">floatForKey:</a></h3>
|
||||
- (float) <b>floatForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (float) <b>floatForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -101,97 +101,97 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-8">initWithUser:</a></h3>
|
||||
- (id) <b>initWithUser:</b> (<A HREF="NSString.html#NSString">NSString</A>*)username;<br>
|
||||
- (id) <b>initWithUser:</b> (NSString*)username;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-9">integerForKey:</a></h3>
|
||||
- (int) <b>integerForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (int) <b>integerForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-10">objectForKey:</a></h3>
|
||||
- (id) <b>objectForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (id) <b>objectForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-11">persistentDomainForName:</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>persistentDomainForName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)domainName;<br>
|
||||
- (NSDictionary*) <b>persistentDomainForName:</b> (NSString*)domainName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-12">persistentDomainNames</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>persistentDomainNames</b>;<br>
|
||||
- (NSArray*) <b>persistentDomainNames</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-13">registerDefaults:</a></h3>
|
||||
- (void) <b>registerDefaults:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)dictionary;<br>
|
||||
- (void) <b>registerDefaults:</b> (NSDictionary*)dictionary;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-14">removeObjectForKey:</a></h3>
|
||||
- (void) <b>removeObjectForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (void) <b>removeObjectForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-15">removePersistentDomainForName:</a></h3>
|
||||
- (void) <b>removePersistentDomainForName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)domainName;<br>
|
||||
- (void) <b>removePersistentDomainForName:</b> (NSString*)domainName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-16">removeVolatileDomainForName:</a></h3>
|
||||
- (void) <b>removeVolatileDomainForName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)domainName;<br>
|
||||
- (void) <b>removeVolatileDomainForName:</b> (NSString*)domainName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-17">searchList</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>searchList</b>;<br>
|
||||
- (NSArray*) <b>searchList</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-18">setBool:forKey:</a></h3>
|
||||
- (void) <b>setBool:</b> (BOOL)value <b>forKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (void) <b>setBool:</b> (BOOL)value <b>forKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-19">setFloat:forKey:</a></h3>
|
||||
- (void) <b>setFloat:</b> (float)value <b>forKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (void) <b>setFloat:</b> (float)value <b>forKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-20">setInteger:forKey:</a></h3>
|
||||
- (void) <b>setInteger:</b> (int)value <b>forKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (void) <b>setInteger:</b> (int)value <b>forKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-21">setObject:forKey:</a></h3>
|
||||
- (void) <b>setObject:</b> (id)value <b>forKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (void) <b>setObject:</b> (id)value <b>forKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-22">setPersistentDomain:forName:</a></h3>
|
||||
- (void) <b>setPersistentDomain:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)domain <b>forName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)domainName;<br>
|
||||
- (void) <b>setPersistentDomain:</b> (NSDictionary*)domain <b>forName:</b> (NSString*)domainName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-23">setSearchList:</a></h3>
|
||||
- (void) <b>setSearchList:</b> (<A HREF="NSArray.html#NSArray">NSArray</A>*)array;<br>
|
||||
- (void) <b>setSearchList:</b> (NSArray*)array;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-24">setVolatileDomain:forName:</a></h3>
|
||||
- (void) <b>setVolatileDomain:</b> (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*)domain <b>forName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)domainName;<br>
|
||||
- (void) <b>setVolatileDomain:</b> (NSDictionary*)domain <b>forName:</b> (NSString*)domainName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-25">stringArrayForKey:</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>stringArrayForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (NSArray*) <b>stringArrayForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-26">stringForKey:</a></h3>
|
||||
- (<A HREF="NSString.html#NSString">NSString</A>*) <b>stringForKey:</b> (<A HREF="NSString.html#NSString">NSString</A>*)defaultName;<br>
|
||||
- (NSString*) <b>stringForKey:</b> (NSString*)defaultName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
@ -201,12 +201,12 @@
|
|||
|
||||
<hr>
|
||||
<h3><a name ="method-28">volatileDomainForName:</a></h3>
|
||||
- (<A HREF="NSDictionary.html#NSDictionary">NSDictionary</A>*) <b>volatileDomainForName:</b> (<A HREF="NSString.html#NSString">NSString</A>*)domainName;<br>
|
||||
- (NSDictionary*) <b>volatileDomainForName:</b> (NSString*)domainName;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-29">volatileDomainNames</a></h3>
|
||||
- (<A HREF="NSArray.html#NSArray">NSArray</A>*) <b>volatileDomainNames</b>;<br>
|
||||
- (NSArray*) <b>volatileDomainNames</b>;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<h2><a name ="cont-0">NSValue</a></h2>
|
||||
<h2><a name ="NSValue">NSValue</a></h2>
|
||||
<p><b>Declared in: </b> Foundation/NSValue.h</p>
|
||||
<p><b>Inherits from:</b> <A HREF="NSObject.html#NSObject">NSObject</A></p>
|
||||
<p><b>Inherits from: </b> NSObject</p>
|
||||
<p><b>Conforms to: </b> NSCoding
|
||||
</p>
|
||||
<hr>
|
||||
|
@ -45,37 +45,37 @@
|
|||
</ul>
|
||||
<hr><h2>Class Methods </h2>
|
||||
<h3><a name ="method-0">value:withObjCType:</a></h3>
|
||||
+ (<A HREF="NSValue.html#NSValue">NSValue</A>*) <b>value:</b> (const void*)value <b>withObjCType:</b> (const char*)type;<br>
|
||||
+ (NSValue*) <b>value:</b> (const void*)value <b>withObjCType:</b> (const char*)type;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-1">valueWithBytes:objCType:</a></h3>
|
||||
+ (<A HREF="NSValue.html#NSValue">NSValue</A>*) <b>valueWithBytes:</b> (const void*)value <b>objCType:</b> (const char*)type;<br>
|
||||
+ (NSValue*) <b>valueWithBytes:</b> (const void*)value <b>objCType:</b> (const char*)type;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-2">valueWithNonretainedObject:</a></h3>
|
||||
+ (<A HREF="NSValue.html#NSValue">NSValue</A>*) <b>valueWithNonretainedObject:</b> (id)anObject;<br>
|
||||
+ (NSValue*) <b>valueWithNonretainedObject:</b> (id)anObject;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-3">valueWithPoint:</a></h3>
|
||||
+ (<A HREF="NSValue.html#NSValue">NSValue</A>*) <b>valueWithPoint:</b> (NSPoint)aPoint;<br>
|
||||
+ (NSValue*) <b>valueWithPoint:</b> (NSPoint)aPoint;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-4">valueWithPointer:</a></h3>
|
||||
+ (<A HREF="NSValue.html#NSValue">NSValue</A>*) <b>valueWithPointer:</b> (const void*)aPointer;<br>
|
||||
+ (NSValue*) <b>valueWithPointer:</b> (const void*)aPointer;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-5">valueWithRect:</a></h3>
|
||||
+ (<A HREF="NSValue.html#NSValue">NSValue</A>*) <b>valueWithRect:</b> (NSRect)rect;<br>
|
||||
+ (NSValue*) <b>valueWithRect:</b> (NSRect)rect;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
<h3><a name ="method-6">valueWithSize:</a></h3>
|
||||
+ (<A HREF="NSValue.html#NSValue">NSValue</A>*) <b>valueWithSize:</b> (NSSize)size;<br>
|
||||
+ (NSValue*) <b>valueWithSize:</b> (NSSize)size;<br>
|
||||
|
||||
|
||||
<hr>
|
||||
|
|
|
@ -177,12 +177,26 @@ typedef xmlNsType GSXMLNamespaceType;
|
|||
void *lib; /* parser context */
|
||||
GSSAXHandler *saxHandler;
|
||||
}
|
||||
+ (GSXMLParser*) parser: (id)source;
|
||||
+ (GSXMLParser*) parser;
|
||||
+ (GSXMLParser*) parserWithContentsOfFile: (NSString*)path;
|
||||
+ (GSXMLParser*) parserWithContentsOfURL: (NSURL*)url;
|
||||
+ (GSXMLParser*) parserWithData: (NSData*)data;
|
||||
+ (GSXMLParser*) parserWithSAXHandler: (GSSAXHandler*)handler;
|
||||
+ (GSXMLParser*) parserWithSAXHandler: (GSSAXHandler*)handler
|
||||
source: (id) source;
|
||||
withContentsOfFile: (NSString*)path;
|
||||
+ (GSXMLParser*) parserWithSAXHandler: (GSSAXHandler*)handler
|
||||
withContentsOfURL: (NSURL*)url;
|
||||
+ (GSXMLParser*) parserWithSAXHandler: (GSSAXHandler*)handler
|
||||
withData: (NSData*)data;
|
||||
+ (NSString*) xmlEncodingStringForStringEncoding: (NSStringEncoding)encoding;
|
||||
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler source: (id)source;
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler;
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler
|
||||
withContentsOfFile: (NSString*)path;
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler
|
||||
withContentsOfURL: (NSURL*)url;
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler
|
||||
withData: (NSData*)data;
|
||||
|
||||
- (GSXMLDocument*) doc;
|
||||
- (BOOL) parse;
|
||||
|
|
|
@ -28,6 +28,10 @@
|
|||
#include <Foundation/NSRange.h>
|
||||
#include <Foundation/NSSerialization.h>
|
||||
|
||||
#ifndef STRICT_OPENSTEP
|
||||
@class NSURL;
|
||||
#endif
|
||||
|
||||
@interface NSData : NSObject <NSCoding, NSCopying, NSMutableCopying>
|
||||
|
||||
// Allocating and Initializing a Data Object
|
||||
|
@ -39,6 +43,9 @@
|
|||
length: (unsigned int)length;
|
||||
+ (id) dataWithContentsOfFile: (NSString*)path;
|
||||
+ (id) dataWithContentsOfMappedFile: (NSString*)path;
|
||||
#ifndef STRICT_OPENSTEP
|
||||
+ (id) dataWithContentsOfURL: (NSURL*)url;
|
||||
#endif
|
||||
+ (id) dataWithData: (NSData*)data;
|
||||
- (id) initWithBytes: (const void*)bytes
|
||||
length: (unsigned int)length;
|
||||
|
@ -46,6 +53,9 @@
|
|||
length: (unsigned int)length;
|
||||
- (id) initWithContentsOfFile: (NSString*)path;
|
||||
- (id) initWithContentsOfMappedFile: (NSString*)path;
|
||||
#ifndef STRICT_OPENSTEP
|
||||
- (id) initWithContentsOfURL: (NSURL*)url;
|
||||
#endif
|
||||
- (id) initWithData: (NSData*)data;
|
||||
|
||||
// Accessing Data
|
||||
|
|
|
@ -33,7 +33,9 @@ typedef unsigned short unichar;
|
|||
@class NSCharacterSet;
|
||||
@class NSData;
|
||||
@class NSDictionary;
|
||||
#ifndef STRICT_OPENSTEP
|
||||
@class NSURL;
|
||||
#endif
|
||||
|
||||
#define NSMaximumStringLength (INT_MAX-1)
|
||||
#define NSHashStringLength 63
|
||||
|
|
|
@ -36,7 +36,6 @@ GS_EXPORT NSString* NSURLFileScheme; //file
|
|||
{
|
||||
NSString *_urlString;
|
||||
NSURL *_baseURL;
|
||||
void *_clients;
|
||||
}
|
||||
|
||||
+ (id) fileURLWithPath: (NSString*)path;
|
||||
|
|
131
Source/GSXML.m
131
Source/GSXML.m
|
@ -819,15 +819,53 @@ static NSString *endMarker = @"At end of incremental parse";
|
|||
setupCache();
|
||||
}
|
||||
|
||||
+ (GSXMLParser*) parser: (id)source
|
||||
+ (GSXMLParser*) parser
|
||||
{
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: nil source: source]);
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: nil]);
|
||||
}
|
||||
|
||||
+ (GSXMLParser*) parserWithContentsOfFile: (NSString*)path
|
||||
{
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: nil
|
||||
withContentsOfFile: path]);
|
||||
}
|
||||
|
||||
+ (GSXMLParser*) parserWithContentsOfURL: (NSURL*)url
|
||||
{
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: nil
|
||||
withContentsOfURL: url]);
|
||||
}
|
||||
|
||||
+ (GSXMLParser*) parserWithData: (NSData*)data
|
||||
{
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: nil
|
||||
withData: data]);
|
||||
}
|
||||
|
||||
+ (GSXMLParser*) parserWithSAXHandler: (GSSAXHandler*)handler
|
||||
source: (id)source
|
||||
{
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: handler source: source]);
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: handler]);
|
||||
}
|
||||
|
||||
+ (GSXMLParser*) parserWithSAXHandler: (GSSAXHandler*)handler
|
||||
withContentsOfFile: (NSString*)path
|
||||
{
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: handler
|
||||
withContentsOfFile: path]);
|
||||
}
|
||||
|
||||
+ (GSXMLParser*) parserWithSAXHandler: (GSSAXHandler*)handler
|
||||
withContentsOfURL: (NSURL*)url
|
||||
{
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: handler
|
||||
withContentsOfURL: url]);
|
||||
}
|
||||
|
||||
+ (GSXMLParser*) parserWithSAXHandler: (GSSAXHandler*)handler
|
||||
withData: (NSData*)data
|
||||
{
|
||||
return AUTORELEASE([[self alloc] initWithSAXHandler: handler
|
||||
withData: data]);
|
||||
}
|
||||
|
||||
+ (NSString*) xmlEncodingStringForStringEncoding: (NSStringEncoding)encoding
|
||||
|
@ -891,38 +929,70 @@ static NSString *endMarker = @"At end of incremental parse";
|
|||
return xmlEncodingString;
|
||||
}
|
||||
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler source: (id)source
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler
|
||||
{
|
||||
self = [super init];
|
||||
|
||||
if (handler != nil && [handler isKindOfClass: [GSSAXHandler class]] == NO)
|
||||
{
|
||||
NSLog(@"Bad GSSAXHandler object passed to GSXMLParser initialiser");
|
||||
RELEASE(self);
|
||||
return nil;
|
||||
}
|
||||
self = [self init];
|
||||
if (self != nil)
|
||||
{
|
||||
if ([source isKindOfClass: [NSData class]])
|
||||
{
|
||||
saxHandler = RETAIN(handler);
|
||||
}
|
||||
else if ([source isKindOfClass: NSString_class])
|
||||
{
|
||||
}
|
||||
else if ([source isKindOfClass: [NSURL class]])
|
||||
{
|
||||
NSLog(@"NSURL source not currently implemented");
|
||||
RELEASE(self);
|
||||
return nil;
|
||||
}
|
||||
else if ([source isKindOfClass: [NSURL class]])
|
||||
{
|
||||
NSLog(@"NSURL source not currently implemented");
|
||||
}
|
||||
else
|
||||
{
|
||||
NSLog(@"source must be NSString, NSData, NSURL or nil");
|
||||
RELEASE(self);
|
||||
return nil;
|
||||
}
|
||||
src = [source copy];
|
||||
saxHandler = handler;
|
||||
return self;
|
||||
}
|
||||
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler
|
||||
withContentsOfFile: (NSString*)path
|
||||
{
|
||||
self = [self initWithSAXHandler: handler];
|
||||
if (self != nil)
|
||||
{
|
||||
if (path == nil || [path isKindOfClass: [NSString class]] == NO)
|
||||
{
|
||||
NSLog(@"Bad file path passed to initialize GSXMLParser");
|
||||
RELEASE(self);
|
||||
return nil;
|
||||
}
|
||||
src = [path copy];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler
|
||||
withContentsOfURL: (NSURL*)url
|
||||
{
|
||||
self = [self initWithSAXHandler: handler];
|
||||
if (self != nil)
|
||||
{
|
||||
if (url == nil || [url isKindOfClass: [NSURL class]] == NO)
|
||||
{
|
||||
NSLog(@"Bad NSURL passed to initialize GSXMLParser");
|
||||
RELEASE(self);
|
||||
return nil;
|
||||
}
|
||||
src = [url copy];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (id) initWithSAXHandler: (GSSAXHandler*)handler
|
||||
withData: (NSData*)data
|
||||
{
|
||||
self = [self initWithSAXHandler: handler];
|
||||
if (self != nil)
|
||||
{
|
||||
if (data == nil || [data isKindOfClass: [NSData class]] == NO)
|
||||
{
|
||||
NSLog(@"Bad NSData passed to initialize GSXMLParser");
|
||||
RELEASE(self);
|
||||
return nil;
|
||||
}
|
||||
src = [data copy];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
|
@ -1061,6 +1131,7 @@ static NSString *endMarker = @"At end of incremental parse";
|
|||
- (void) dealloc
|
||||
{
|
||||
RELEASE(src);
|
||||
RELEASE(saxHandler);
|
||||
if (lib != NULL)
|
||||
{
|
||||
xmlFreeDoc(((xmlParserCtxtPtr)lib)->myDoc);
|
||||
|
|
|
@ -74,6 +74,7 @@
|
|||
#include <Foundation/NSFileManager.h>
|
||||
#include <Foundation/NSPathUtilities.h>
|
||||
#include <Foundation/NSRange.h>
|
||||
#include <Foundation/NSURL.h>
|
||||
#include <Foundation/NSZone.h>
|
||||
#include <string.h> /* for memset() */
|
||||
#include <unistd.h> /* SEEK_* on SunOS 4 */
|
||||
|
@ -402,6 +403,14 @@ failure:
|
|||
return AUTORELEASE(d);
|
||||
}
|
||||
|
||||
+ (id) dataWithContentsOfURL: (NSURL*)url
|
||||
{
|
||||
NSData *d;
|
||||
|
||||
d = [url resourceDataUsingCache: YES];
|
||||
return d;
|
||||
}
|
||||
|
||||
+ (id) dataWithData: (NSData*)data
|
||||
{
|
||||
NSData *d;
|
||||
|
@ -457,6 +466,13 @@ failure:
|
|||
return nil;
|
||||
}
|
||||
|
||||
- (id) initWithContentsOfURL: (NSURL*)url
|
||||
{
|
||||
NSData *data = [url resourceDataUsingCache: YES];
|
||||
|
||||
return [self initWithBytes: [data bytes] length: [data length]];
|
||||
}
|
||||
|
||||
- (id) initWithData: (NSData*)data
|
||||
{
|
||||
return [self initWithBytes: [data bytes] length: [data length]];
|
||||
|
@ -616,10 +632,10 @@ failure:
|
|||
{
|
||||
char thePath[BUFSIZ*2+8];
|
||||
char theRealPath[BUFSIZ*2];
|
||||
NSString *tmppath;
|
||||
FILE *theFile;
|
||||
int c;
|
||||
#if defined(__MINGW__)
|
||||
NSString *tmppath;
|
||||
HANDLE fh;
|
||||
DWORD wroteBytes;
|
||||
#endif
|
||||
|
@ -1337,7 +1353,7 @@ failure:
|
|||
|
||||
+ (id) dataWithContentsOfFile: (NSString*)path
|
||||
{
|
||||
NSData *d;
|
||||
NSMutableData *d;
|
||||
|
||||
d = [mutableDataMalloc allocWithZone: NSDefaultMallocZone()];
|
||||
d = [d initWithContentsOfFile: path];
|
||||
|
@ -1346,16 +1362,27 @@ failure:
|
|||
|
||||
+ (id) dataWithContentsOfMappedFile: (NSString*)path
|
||||
{
|
||||
NSData *d;
|
||||
NSMutableData *d;
|
||||
|
||||
d = [mutableDataMalloc allocWithZone: NSDefaultMallocZone()];
|
||||
d = [d initWithContentsOfMappedFile: path];
|
||||
return AUTORELEASE(d);
|
||||
}
|
||||
|
||||
+ (id) dataWithContentsOfURL: (NSURL*)url
|
||||
{
|
||||
NSMutableData *d;
|
||||
NSData *data;
|
||||
|
||||
d = [mutableDataMalloc allocWithZone: NSDefaultMallocZone()];
|
||||
data = [url resourceDataUsingCache: YES];
|
||||
d = [d initWithBytes: [data bytes] length: [data length]];
|
||||
return AUTORELEASE(d);
|
||||
}
|
||||
|
||||
+ (id) dataWithData: (NSData*)data
|
||||
{
|
||||
NSData *d;
|
||||
NSMutableData *d;
|
||||
|
||||
d = [mutableDataMalloc allocWithZone: NSDefaultMallocZone()];
|
||||
d = [d initWithBytes: [data bytes] length: [data length]];
|
||||
|
|
|
@ -57,6 +57,7 @@
|
|||
#include <Foundation/NSException.h>
|
||||
#include <Foundation/NSData.h>
|
||||
#include <Foundation/NSBundle.h>
|
||||
#include <Foundation/NSURL.h>
|
||||
#include <limits.h>
|
||||
#include <string.h> // for strstr()
|
||||
#include <sys/stat.h>
|
||||
|
|
271
Source/NSURL.m
271
Source/NSURL.m
|
@ -40,6 +40,7 @@ function may be incorrect
|
|||
#include <Foundation/NSConcreteNumber.h>
|
||||
#include <Foundation/NSURLHandle.h>
|
||||
#include <Foundation/NSURL.h>
|
||||
#include <Foundation/NSRunLoop.h>
|
||||
|
||||
NSString *NSURLFileScheme = @"file";
|
||||
|
||||
|
@ -82,12 +83,14 @@ NSString* NSURLPartKey_query = @"query";
|
|||
{
|
||||
NSString *aUrlString = nil;
|
||||
|
||||
if (aHost)
|
||||
if (aHost != nil)
|
||||
aUrlString = [NSString stringWithFormat: @"%@://%@", aScheme, aHost];
|
||||
else
|
||||
aUrlString = [NSString stringWithFormat: @"%@:", aScheme];
|
||||
if (aPath)
|
||||
|
||||
if (aPath != nil)
|
||||
aUrlString = [aUrlString stringByAppendingString: aPath];
|
||||
|
||||
self = [self initWithString: aUrlString];
|
||||
return self;
|
||||
}
|
||||
|
@ -101,10 +104,11 @@ NSString* NSURLPartKey_query = @"query";
|
|||
{
|
||||
NSString *tmpHost = nil;
|
||||
|
||||
if (aPort)
|
||||
if (aPort != nil)
|
||||
tmpHost = [NSString stringWithFormat: @"%@:%@", aHost, aPort];
|
||||
else
|
||||
tmpHost = aHost;
|
||||
|
||||
self = [self initWithScheme: aScheme
|
||||
host: tmpHost
|
||||
path: aPath];
|
||||
|
@ -165,7 +169,6 @@ NSString* NSURLPartKey_query = @"query";
|
|||
{
|
||||
[aCoder encodeObject: _urlString];
|
||||
[aCoder encodeObject: _baseURL];
|
||||
//FIXME? _clients ?
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
@ -173,7 +176,6 @@ NSString* NSURLPartKey_query = @"query";
|
|||
{
|
||||
[aCoder decodeValueOfObjCType: @encode(id) at: &_urlString];
|
||||
[aCoder decodeValueOfObjCType: @encode(id) at: &_baseURL];
|
||||
//FIXME? _clients ?
|
||||
return self;
|
||||
}
|
||||
|
||||
|
@ -183,7 +185,7 @@ NSString* NSURLPartKey_query = @"query";
|
|||
{
|
||||
NSString *dscr = _urlString;
|
||||
|
||||
if (_baseURL)
|
||||
if (_baseURL != nil)
|
||||
dscr = [dscr stringByAppendingFormat: @" -- %@", _baseURL];
|
||||
return dscr;
|
||||
}
|
||||
|
@ -192,12 +194,14 @@ NSString* NSURLPartKey_query = @"query";
|
|||
// Non Standard Function
|
||||
- (NSString*) baseURLAbsolutePart
|
||||
{
|
||||
if (_baseURL)
|
||||
if (_baseURL != nil)
|
||||
{
|
||||
NSString *suffix = [_baseURL path];
|
||||
NSString *query = [_baseURL query];
|
||||
NSString *tmp = nil;
|
||||
if ([_baseURL query])
|
||||
suffix = [suffix stringByAppendingFormat: @"?%@", [_baseURL query]];
|
||||
|
||||
if (query != nil)
|
||||
suffix = [suffix stringByAppendingFormat: @"?%@", query];
|
||||
// /test?aa = bb&cc=dd -- http: //user: passwd@www.gnustep.org: 80/apache
|
||||
// ==> http: //user: passwd@www.gnustep.org: 80/
|
||||
tmp = [[_baseURL absoluteString] stringWithoutSuffix: suffix];
|
||||
|
@ -216,7 +220,8 @@ NSString* NSURLPartKey_query = @"query";
|
|||
- (NSString*) absoluteString
|
||||
{
|
||||
NSString *absString = nil;
|
||||
if (_baseURL)
|
||||
|
||||
if (_baseURL != nil)
|
||||
{
|
||||
// /test?aa = bb&cc=dd -- http: //user: passwd@www.gnustep.org: 80/apache
|
||||
// ==> http: //user: passwd@www.gnustep.org: 80
|
||||
|
@ -247,7 +252,7 @@ NSString* NSURLPartKey_query = @"query";
|
|||
//-----------------------------------------------------------------------------
|
||||
- (NSURL*) absoluteURL
|
||||
{
|
||||
if (!_baseURL)
|
||||
if (_baseURL != nil)
|
||||
return self;
|
||||
else
|
||||
return [NSURL URLWithString: [self absoluteString]];
|
||||
|
@ -261,7 +266,20 @@ NSString* NSURLPartKey_query = @"query";
|
|||
NSRange range = [absoluteString rangeOfString: @"://"];
|
||||
|
||||
if (range.length > 0)
|
||||
{
|
||||
scheme = [absoluteString substringToIndex: range.location];
|
||||
}
|
||||
else
|
||||
{
|
||||
/*
|
||||
* Cope with URLs missing net_path info - <scheme>:/<path>...
|
||||
*/
|
||||
range = [absoluteString rangeOfString: @":"];
|
||||
if (range.length > 0)
|
||||
{
|
||||
scheme = [absoluteString substringToIndex: range.location];
|
||||
}
|
||||
}
|
||||
return scheme;
|
||||
}
|
||||
|
||||
|
@ -272,10 +290,25 @@ NSString* NSURLPartKey_query = @"query";
|
|||
NSRange range = [absoluteString rangeOfString: @"://"];
|
||||
|
||||
if (range.length > 0)
|
||||
{
|
||||
return [absoluteString substringFromIndex: range.location + 1];
|
||||
}
|
||||
else
|
||||
{
|
||||
/*
|
||||
* Cope with URLs missing net_path info - <scheme>:/<path>...
|
||||
*/
|
||||
range = [absoluteString rangeOfString: @":"];
|
||||
if (range.length > 0)
|
||||
{
|
||||
return [absoluteString substringFromIndex: range.location + 1];
|
||||
}
|
||||
else
|
||||
{
|
||||
return absoluteString;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
//Non Standard Function
|
||||
|
@ -283,15 +316,24 @@ NSString* NSURLPartKey_query = @"query";
|
|||
{
|
||||
NSMutableDictionary *elements = nil;
|
||||
NSString *resourceSpecifier = [self resourceSpecifier];
|
||||
int index = 0;
|
||||
NSRange range;
|
||||
|
||||
if ([resourceSpecifier hasPrefix: @"//"])
|
||||
{
|
||||
int index = 2;
|
||||
NSRange range;
|
||||
index = 2;
|
||||
}
|
||||
else if ([resourceSpecifier hasPrefix: @"/"])
|
||||
{
|
||||
index = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
[NSException raise: NSGenericException
|
||||
format: @"'%@' is a bad URL", self];
|
||||
}
|
||||
|
||||
elements = [NSMutableDictionary dictionaryWithCapacity: 0];
|
||||
if (![[self scheme] isEqualToString: NSURLFileScheme])
|
||||
{
|
||||
range = [resourceSpecifier rangeOfString: @"/" options: 0
|
||||
range: NSMakeRange(index, [resourceSpecifier length] - index)];
|
||||
if (range.length > 0)
|
||||
|
@ -300,81 +342,116 @@ NSString* NSURLPartKey_query = @"query";
|
|||
NSString *userPassword = nil;
|
||||
NSString *hostPort = nil;
|
||||
|
||||
userPasswordHostPort
|
||||
= [resourceSpecifier substringWithRange:
|
||||
userPasswordHostPort = [resourceSpecifier substringWithRange:
|
||||
NSMakeRange(index, range.location - index)];
|
||||
index = range.location;
|
||||
range = [userPasswordHostPort rangeOfString: @"@"];
|
||||
if (range.length > 0)
|
||||
{
|
||||
if (range.location > 0)
|
||||
userPassword
|
||||
= [userPasswordHostPort substringToIndex: range.location];
|
||||
{
|
||||
userPassword = [userPasswordHostPort substringToIndex:
|
||||
range.location];
|
||||
}
|
||||
if (range.location + 1 < [userPasswordHostPort length])
|
||||
hostPort = [userPasswordHostPort
|
||||
substringFromIndex: range.location+1];
|
||||
{
|
||||
hostPort = [userPasswordHostPort substringFromIndex:
|
||||
range.location + 1];
|
||||
}
|
||||
}
|
||||
else
|
||||
hostPort = userPasswordHostPort;
|
||||
if (userPassword)
|
||||
if (userPassword != nil)
|
||||
{
|
||||
range = [userPassword rangeOfString: @": "];
|
||||
if (range.length > 0)
|
||||
{
|
||||
if (range.location > 0)
|
||||
[elements setObject: [userPassword substringToIndex: range.location]
|
||||
{
|
||||
NSString *sub;
|
||||
|
||||
sub = [userPassword substringToIndex: range.location];
|
||||
[elements setObject: sub
|
||||
forKey: NSURLPartKey_user];
|
||||
}
|
||||
if (range.location + 1 < [userPassword length])
|
||||
[elements setObject: [userPassword substringFromIndex: range.location+1]
|
||||
{
|
||||
NSString *sub;
|
||||
|
||||
sub = [userPassword substringToIndex:
|
||||
range.location + 1];
|
||||
[elements setObject: sub
|
||||
forKey: NSURLPartKey_password];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
[elements setObject: userPassword
|
||||
forKey: NSURLPartKey_user];
|
||||
}
|
||||
}
|
||||
|
||||
if (hostPort)
|
||||
if (hostPort != nil)
|
||||
{
|
||||
range = [hostPort rangeOfString: @": "];
|
||||
if (range.length > 0)
|
||||
{
|
||||
if (range.location > 0)
|
||||
[elements setObject: [hostPort substringToIndex: range.location]
|
||||
{
|
||||
NSString *sub;
|
||||
|
||||
sub = [hostPort substringToIndex: range.location];
|
||||
[elements setObject: sub
|
||||
forKey: NSURLPartKey_host];
|
||||
}
|
||||
if (range.location + 1 < [hostPort length])
|
||||
[elements setObject: [NSNumber valueFromString:
|
||||
[hostPort substringFromIndex: range.location+1]]
|
||||
{
|
||||
NSString *sub;
|
||||
|
||||
sub = [hostPort substringFromIndex:
|
||||
range.location + 1];
|
||||
[elements setObject: [NSNumber valueFromString: sub]
|
||||
forKey: NSURLPartKey_port];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
[elements setObject: hostPort
|
||||
forKey: NSURLPartKey_host];
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
index--; //To Take a /
|
||||
|
||||
range = NSMakeRange(index, [resourceSpecifier length] - index);
|
||||
range = [resourceSpecifier rangeOfString: @"?"
|
||||
options: 0
|
||||
range: NSMakeRange(index, [resourceSpecifier length]-index)];
|
||||
range: range];
|
||||
if (range.length > 0)
|
||||
{
|
||||
if (range.location > 0)
|
||||
[elements setObject: [resourceSpecifier substringWithRange: NSMakeRange(index, range.location-index)]
|
||||
{
|
||||
NSString *sub;
|
||||
|
||||
sub = [resourceSpecifier substringWithRange:
|
||||
NSMakeRange(index, range.location - index)];
|
||||
[elements setObject: sub
|
||||
forKey: NSURLPartKey_path];
|
||||
}
|
||||
if (range.location + 1 < [resourceSpecifier length])
|
||||
[elements setObject: [resourceSpecifier substringFromIndex: range.location+1]
|
||||
{
|
||||
NSString *sub;
|
||||
|
||||
sub = [resourceSpecifier substringFromIndex: range.location + 1];
|
||||
[elements setObject: sub
|
||||
forKey: NSURLPartKey_query];
|
||||
}
|
||||
else
|
||||
[elements setObject: [resourceSpecifier substringFromIndex: index]
|
||||
forKey: NSURLPartKey_path];
|
||||
}
|
||||
else
|
||||
{
|
||||
[NSException raise: NSGenericException
|
||||
format: @"'%@' is a bad URL", self];
|
||||
[elements setObject: [resourceSpecifier substringFromIndex: index]
|
||||
forKey: NSURLPartKey_path];
|
||||
}
|
||||
|
||||
return elements;
|
||||
}
|
||||
|
||||
|
@ -451,37 +528,27 @@ NSString* NSURLPartKey_query = @"query";
|
|||
- (void) URLHandle: (NSURLHandle*)sender
|
||||
resourceDataDidBecomeAvailable: (NSData*)newData
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (void) URLHandleResourceDidBeginLoading: (NSURLHandle*)sender
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (void) URLHandleResourceDidFinishLoading: (NSURLHandle*)sender
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (void) URLHandleResourceDidCancelLoading: (NSURLHandle*)sender
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (void) URLHandle: (NSURLHandle*)sender
|
||||
resourceDidFailLoadingWithReason: (NSString*)reason
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
@ -505,14 +572,11 @@ NSString* NSURLPartKey_query = @"query";
|
|||
{
|
||||
id aBaseUrl = nil;
|
||||
id aUrlString = nil;
|
||||
void* __clients =0;
|
||||
GSGetInstanceVariable(url, @"_baseURL", &aBaseUrl);
|
||||
GSGetInstanceVariable(url, @"_urlString", &aUrlString);
|
||||
GSGetInstanceVariable(url, @"_clients", &__clients);
|
||||
NSLog(@"*BaseURL: %ld", (long)aBaseUrl);
|
||||
NSLog(@"*BaseURL: %@", [aBaseUrl description]);
|
||||
NSLog(@"*_urlString: %@", aUrlString);
|
||||
NSLog(@"*_clients: %ld", (long)__clients);
|
||||
NSLog(@"*host: %@", [url host]);
|
||||
NSLog(@"*port: %@", [url port]);
|
||||
NSLog(@"*user: %@", [url user]);
|
||||
|
@ -525,63 +589,97 @@ NSString* NSURLPartKey_query = @"query";
|
|||
NSLog(@"*absoluteString: %@", [url absoluteString]);
|
||||
NSLog(@"*relativeString: %@", [url relativeString]);
|
||||
NSLog(@"*_baseURL: %@", [[url baseURL] description]);
|
||||
NSLog(@"*absoluteURL: %@", [[url absoluteURL] description]);
|
||||
NSLog(@"*scheme: %@", [url scheme]);
|
||||
NSLog(@"*resourceSpecifier: %@", [url resourceSpecifier]);
|
||||
NSLog(@"*description: %@", [url description]);
|
||||
}
|
||||
@end
|
||||
|
||||
//=============================================================================
|
||||
@implementation NSURL (NSURLLoading)
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (NSData*) resourceDataUsingCache: (BOOL)shouldUseCache
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
return nil;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (void) loadResourceDataNotifyingClient: (id)client
|
||||
usingCache: (BOOL)shouldUseCache
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
NSURLHandle *handle = [self URLHandleUsingCache: shouldUseCache];
|
||||
NSRunLoop *loop;
|
||||
NSDate *future;
|
||||
|
||||
if (client != nil)
|
||||
[handle addClient: client];
|
||||
|
||||
/*
|
||||
* Kick off the load process.
|
||||
*/
|
||||
[handle loadInBackground];
|
||||
|
||||
/*
|
||||
* Keep the runloop going until the load has completed (or failed).
|
||||
*/
|
||||
loop = [NSRunLoop currentRunLoop];
|
||||
future = [NSDate distantFuture];
|
||||
while ([handle status] == NSURLHandleLoadInProgress)
|
||||
{
|
||||
[loop runMode: NSDefaultRunLoopMode beforeDate: future];
|
||||
}
|
||||
|
||||
if (client != nil)
|
||||
[handle removeClient: client];
|
||||
}
|
||||
|
||||
- (NSData*) resourceDataUsingCache: (BOOL)shouldUseCache
|
||||
{
|
||||
NSURLHandle *handle = [self URLHandleUsingCache: shouldUseCache];
|
||||
NSData *data;
|
||||
|
||||
if (shouldUseCache == NO || [handle status] != NSURLHandleLoadSucceeded)
|
||||
{
|
||||
[self loadResourceDataNotifyingClient: self
|
||||
usingCache: shouldUseCache];
|
||||
}
|
||||
data = [handle resourceData];
|
||||
return data;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (NSURLHandle*) URLHandleUsingCache: (BOOL)shouldUseCache
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
return nil;
|
||||
NSURLHandle *handle = nil;
|
||||
|
||||
if (shouldUseCache)
|
||||
{
|
||||
handle = [NSURLHandle cachedHandleForURL: self];
|
||||
}
|
||||
if (handle == nil)
|
||||
{
|
||||
Class c = [NSURLHandle URLHandleClassForURL: self];
|
||||
|
||||
if (c != 0)
|
||||
{
|
||||
handle = [[c alloc] initWithURL: self cached: shouldUseCache];
|
||||
AUTORELEASE(handle);
|
||||
}
|
||||
}
|
||||
return handle;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (BOOL) setResourceData: (NSData*)data
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
return NO;
|
||||
NSURLHandle *handle = [self URLHandleUsingCache: YES];
|
||||
|
||||
return [handle writeData: data];
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (id) propertyForKey: (NSString*)propertyKey
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
return nil;
|
||||
NSURLHandle *handle = [self URLHandleUsingCache: YES];
|
||||
|
||||
return [handle propertyForKey: propertyKey];
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (BOOL) setProperty: (id)property
|
||||
forKey: (NSString*)propertyKey;
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
return NO;
|
||||
NSURLHandle *handle = [self URLHandleUsingCache: YES];
|
||||
|
||||
return [handle writeProperty: property forKey: propertyKey];
|
||||
}
|
||||
|
||||
@end
|
||||
|
@ -589,36 +687,25 @@ NSString* NSURLPartKey_query = @"query";
|
|||
//=============================================================================
|
||||
@implementation NSObject (NSURLClient)
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (void) URL: (NSURL*)sender
|
||||
resourceDataDidBecomeAvailable: (NSData*)newBytes
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (void) URLResourceDidFinishLoading: (NSURL*)sender
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (void) URLResourceDidCancelLoading: (NSURL*)sender
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
- (void) URL: (NSURL*)sender
|
||||
resourceDidFailLoadingWithReason: (NSString*)reason
|
||||
{
|
||||
//FIXME
|
||||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
|
|
|
@ -730,7 +730,7 @@ static id parsePl(pldata* pld)
|
|||
memcpy(buf, pld->ptr, pld->end);
|
||||
buf[pld->end] = '\0';
|
||||
data = [NSData dataWithBytesNoCopy: buf length: pld->end+1];
|
||||
parser = [GSXMLParser parser: data];
|
||||
parser = [GSXMLParser parserWithData: data];
|
||||
if ([parser parse] == YES)
|
||||
{
|
||||
if (![[[[parser doc] root] name] isEqualToString: @"plist"])
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/Foundation.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#define _(X) \
|
||||
[[NSBundle mainBundle] localizedStringForKey: @#X value: nil table: nil]
|
||||
#define $(X) \
|
||||
[[NSBundle mainBundle] localizedStringForKey: X value: nil table: nil]
|
||||
|
||||
|
||||
#if 0
|
||||
int main ()
|
||||
{
|
||||
|
@ -12,6 +18,14 @@ int main ()
|
|||
int main (int argc, char **argv)
|
||||
{
|
||||
NSString *string;
|
||||
id pool = [NSAutoreleasePool new];
|
||||
NSURL *url = [NSURL fileURLWithPath: @"/tmp/a"];
|
||||
NSData *data = [url resourceDataUsingCache: YES];
|
||||
|
||||
NSLog(@"%@", data);
|
||||
|
||||
NSLog(@"%@", _(Testing));
|
||||
NSLog(@"%@", $(@"Testing"));
|
||||
|
||||
string = [NSString stringWithCString:argv[1]];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue