mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-30 20:10:53 +00:00
Added some documentation for NSString
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6570 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
90cd0daae4
commit
3307f9faab
1 changed files with 12 additions and 0 deletions
|
@ -7,6 +7,9 @@
|
||||||
<email address="rfm@gnu.org"/>
|
<email address="rfm@gnu.org"/>
|
||||||
<url url="http://www.gnustep.org/developers/whoiswho.html"/>
|
<url url="http://www.gnustep.org/developers/whoiswho.html"/>
|
||||||
</author>
|
</author>
|
||||||
|
<author name="James Dessart">
|
||||||
|
<email address="skwirl@cam.org"/>
|
||||||
|
</author>
|
||||||
<version>0.1</version>
|
<version>0.1</version>
|
||||||
<date>28 February, 2000</date>
|
<date>28 February, 2000</date>
|
||||||
</head>
|
</head>
|
||||||
|
@ -17,21 +20,30 @@
|
||||||
<declared>Foundation/NSString.h</declared>
|
<declared>Foundation/NSString.h</declared>
|
||||||
<conform>NSCoding</conform>
|
<conform>NSCoding</conform>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>NSString objects represent an immutable string of characters. NSString itself is an
|
||||||
|
abstract class which provides factory methods to generate objects of unspecified
|
||||||
|
subclasses.</p>
|
||||||
|
|
||||||
|
<p>A constant NSString can be created using the following syntax: <code>@"..."</code>,
|
||||||
|
where the contents of the quotes are the string, using only ASCII characters.</p>
|
||||||
</desc>
|
</desc>
|
||||||
<method type="const NSStringEncoding*" factory="yes">
|
<method type="const NSStringEncoding*" factory="yes">
|
||||||
<sel>availableStringEncodings</sel>
|
<sel>availableStringEncodings</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>Returns an array of all available string encodings, terminated by a null value.</p>
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSStringEncoding" factory="yes">
|
<method type="NSStringEncoding" factory="yes">
|
||||||
<sel>defaultCStringEncoding</sel>
|
<sel>defaultCStringEncoding</sel>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>Returns the encoding used for any method accepting a C string.</p>
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSString*" factory="yes">
|
<method type="NSString*" factory="yes">
|
||||||
<sel>localizedNameOfStringEncoding:</sel>
|
<sel>localizedNameOfStringEncoding:</sel>
|
||||||
<arg type="NSStringEncoding">encoding</arg>
|
<arg type="NSStringEncoding">encoding</arg>
|
||||||
<desc>
|
<desc>
|
||||||
|
<p>Returns the localized name of the encoding specified by <var>encoding</var>.</p>
|
||||||
</desc>
|
</desc>
|
||||||
</method>
|
</method>
|
||||||
<method type="NSString*" factory="yes">
|
<method type="NSString*" factory="yes">
|
||||||
|
|
Loading…
Reference in a new issue