00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSString.h>
00008
00009 @interface NSMutableString : NSString
00010 {
00011 }
00012
00013 + (id)allocWithZone:(struct _NSZone *)fp8;
00014 + (id)stringWithCapacity:(unsigned int)fp8;
00015 - (void)replaceCharactersInRange:(struct _NSRange)fp8 withString:(id)fp16;
00016 - (void)insertString:(id)fp8 atIndex:(unsigned int)fp12;
00017 - (void)appendString:(id)fp8;
00018 - (void)deleteCharactersInRange:(struct _NSRange)fp8;
00019 - (void)replaceCharactersInRange:(struct _NSRange)fp8 withCString:(const char *)fp16 length:(unsigned int)fp20;
00020 - (void)replaceCharactersInRange:(struct _NSRange)fp8 withCharacters:(const unsigned short *)fp16 length:(unsigned int)fp20;
00021 - (void)appendFormat:(id)fp8;
00022 - (void)setString:(id)fp8;
00023 - (unsigned int)replaceOccurrencesOfString:(id)fp8 withString:(id)fp12 options:(unsigned int)fp16 range:(struct _NSRange)fp20;
00024 - (Class)classForCoder;
00025 - (id)initWithCapacity:(unsigned int)fp8;
00026
00027 @end
00028