Up

NSAttributedString class reference

Authors

ANOQ of the sun (anoq@vip.cybercity.dk)
Richard Frith-Macdonald (richard@brainstorm.co.uk)

Version: 1.40

Date: 2003/08/20 12:13:34

Copyright: (C) 1997,1999 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the NSAttributedString class
  2. Software documentation for the NSMutableAttributedString class

Software documentation for the NSAttributedString class

NSAttributedString : NSObject

Declared in:
Foundation/NSAttributedString.h
Conforms to:
NSCoding
NSCopying
NSMutableCopying
Standards:

Description forthcoming.

Method summary

attribute: atIndex: effectiveRange: 

- (id) attribute: (NSString*)attributeName atIndex: (unsigned int)index effectiveRange: (NSRange*)aRange;

Description forthcoming.


attribute: atIndex: longestEffectiveRange: inRange: 

- (id) attribute: (NSString*)attributeName atIndex: (unsigned int)index longestEffectiveRange: (NSRange*)aRange inRange: (NSRange)rangeLimit;

Description forthcoming.


attributedSubstringFromRange: 

- (NSAttributedString*) attributedSubstringFromRange: (NSRange)aRange;

Description forthcoming.


attributedSubstringWithRange: 

- (NSAttributedString*) attributedSubstringWithRange: (NSRange)aRange;

Description forthcoming.


attributesAtIndex: effectiveRange: 

- (NSDictionary*) attributesAtIndex: (unsigned int)index effectiveRange: (NSRange*)aRange;

Description forthcoming.


attributesAtIndex: longestEffectiveRange: inRange: 

- (NSDictionary*) attributesAtIndex: (unsigned int)index longestEffectiveRange: (NSRange*)aRange inRange: (NSRange)rangeLimit;

Description forthcoming.


initWithAttributedString: 

- (id) initWithAttributedString: (NSAttributedString*)attributedString;

Description forthcoming.


initWithString: 

- (id) initWithString: (NSString*)aString;

Description forthcoming.


initWithString: attributes: 

- (id) initWithString: (NSString*)aString attributes: (NSDictionary*)attributes;

Description forthcoming.


isEqualToAttributedString: 

- (BOOL) isEqualToAttributedString: (NSAttributedString*)otherString;

Description forthcoming.


length 

- (unsigned int) length;

Description forthcoming.


string 

- (NSString*) string;

Description forthcoming.


Software documentation for the NSMutableAttributedString class

NSMutableAttributedString : NSAttributedString

Declared in:
Foundation/NSAttributedString.h
Standards:

Description forthcoming.

Method summary

addAttribute: value: range: 

- (void) addAttribute: (NSString*)name value: (id)value range: (NSRange)aRange;

Description forthcoming.


addAttributes: range: 

- (void) addAttributes: (NSDictionary*)attributes range: (NSRange)aRange;

Description forthcoming.


appendAttributedString: 

- (void) appendAttributedString: (NSAttributedString*)attributedString;

Description forthcoming.


beginEditing 

- (void) beginEditing;

Description forthcoming.


deleteCharactersInRange: 

- (void) deleteCharactersInRange: (NSRange)aRange;

Description forthcoming.


endEditing 

- (void) endEditing;

Description forthcoming.


insertAttributedString: atIndex: 

- (void) insertAttributedString: (NSAttributedString*)attributedString atIndex: (unsigned int)index;

Description forthcoming.


mutableString 

- (NSMutableString*) mutableString;

Description forthcoming.


removeAttribute: range: 

- (void) removeAttribute: (NSString*)name range: (NSRange)aRange;

Description forthcoming.


replaceCharactersInRange: withAttributedString: 

- (void) replaceCharactersInRange: (NSRange)aRange withAttributedString: (NSAttributedString*)attributedString;

Description forthcoming.


replaceCharactersInRange: withString: 

- (void) replaceCharactersInRange: (NSRange)aRange withString: (NSString*)aString;

Description forthcoming.


setAttributedString: 

- (void) setAttributedString: (NSAttributedString*)attributedString;

Description forthcoming.


setAttributes: range: 

- (void) setAttributes: (NSDictionary*)attributes range: (NSRange)aRange;

Description forthcoming.



Up