CWMIMEMultipart |
This class is used to define a composite multipart. It holds CWPart instances.
Superclass
NSObject
Declared In
addPart: |
- (void) addPart: (CWPart *) thePart;
This method is used to add new body part to the multipart instance.
count |
- (unsigned int) count;
The number of Part instances.
This method returns the number of CWPart objects present in the receiver.
partAtIndex: |
- (CWPart *) partAtIndex: (unsigned int) theIndex;
The CWPart instance. If the index is out of bounds, an NSRangeException is raised.
This method is used to get the CWPart instance at the specified index.
removePart: |
- (void) removePart: (CWPart *) thePart;
This method is used to remove an existing body part from the multipart instance.
_parts |
private
NSMutableArray *_parts;